const path = require('path'); module.exports = { publicPath: process.env.NODE_ENV === 'development' ? '/' : '/' + process.env.VUE_APP_ROUTER, outputDir: process.env.VUE_APP_ROUTER, configureWebpack: config => { Object.assign(config, { // 开发生产共同配置 resolve: { alias: { '@': path.resolve(__dirname, './src'), '@c': path.resolve(__dirname, './src/components'), '@a': path.resolve(__dirname, './src/assets'), }, }, }); }, devServer: { port: '8001', //api地址前缀 proxy: { '/weixin': { target: 'http://smart.cc-lotus.info', changeOrigin: true, ws: true, }, '/files': { target: 'http://broadcast.waityou24.cn/', }, '/api': { target: 'http://127.0.0.1:3001', changeOrigin: true, ws: true, }, '/ws': { target: 'http://broadcast.waityou24.cn/', ws: true, }, }, }, chainWebpack: config => { const types = ['vue-modules', 'vue', 'normal-modules', 'normal']; types.forEach(type => addStyleResource(config.module.rule('less').oneOf(type))); }, }; function addStyleResource(rule) { rule .use('style-resource') .loader('style-resources-loader') .options({ patterns: [ path.resolve(__dirname, './src/style/color.less'), // 需要全局导入的less ], }); }