1234567891011121314151617181920212223242526272829303132333435363738 |
- module.exports = {
- pages:{
- index:{
-
- entry:'src/main.js',
- },
- },
- lintOnSave:false,
-
-
-
-
-
- devServer: {
- proxy: {
- '/api': {
- target: 'http://localhost:5000',
- pathRewrite:{'^/api':''},
- ws: true,
- changeOrigin: true
- },
- '/demo': {
- target: 'http://localhost:5001',
- pathRewrite:{'^/demo':''},
- ws: true,
- changeOrigin: true
- },
- }
- }
- }
|