1234567891011121314151617181920212223 |
- module.exports = {
- publicPath: '/demo',
- // transpileDependencies: ['naf-core'],
- // configureWebpack: {
- // externals: {
- // 'element-ui': 'Element',
- // vue: 'Vue',
- // },
- // },
- devServer: {
- proxy: {
- '/ws': {
- target: 'http://smart.cc-lotus.info',
- ws: true,
- },
- '/weixin': {
- target: 'http://smart.cc-lotus.info',
- },
- },
- },
- };
|