12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- const path = require('path');
- const publics = path.resolve(__dirname, '../web-common');
- module.exports = {
- publicPath: process.env.NODE_ENV === 'development' ? '/' : 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'),
- '@publics': publics,
- },
- },
- });
- },
- devServer: {
- port: '8001',
- //api地址前缀
- proxy: {
- '/weixin': {
- target: 'http://smart.cc-lotus.info',
- changeOrigin: true,
- ws: true,
- },
- '/files': {
- target: 'http://free.liaoningdoupo.com',
- },
- '/api': {
- target: 'http://free.liaoningdoupo.com',
- changeOrigin: true,
- ws: true,
- },
- '/ws': {
- target: 'http://free.liaoningdoupo.com',
- 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
- ],
- });
- }
|