12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- module.exports = {
- chainWebpack: config => {
-
- config.module
- .rule('graphql')
- .test(/\.gql$/)
- .use('graphql-tag/loader')
- .loader('graphql-tag/loader')
- .end()
- },
- css: {
- loaderOptions: {
- sass: {
- prependData: '@import "@/assets/scss/abstracts/_abstracts.scss";'
- }
- }
- },
- publicPath: '/',
- devServer: {
- clientLogLevel: 'warning',
-
-
-
-
-
-
-
-
- host: '0.0.0.0',
- port: 8988,
- disableHostCheck: true,
- publicPath: '/',
- sockHost: 'localhost',
- public: 'localhost:8988/',
- proxy: {
- '^/api': {
- target: 'http://0.0.0.0:9000',
- logLevel: 'debug'
- }
- },
-
- watchOptions: {
- ignored: /node_modules/
- }
- }
- }
|