12345678910111213141516171819202122 |
- module.exports = {
- outputDir:"jiusheng",
- lintOnSave: false,
- productionSourceMap:false,
- publicPath: './',
- devServer: {
- open: true,
- host: 'localhost',
- port: 8080,
- proxy: {
- '/apis': {
- target: '', // target host
- ws: true, // proxy websockets
- changeOrigin: true, // needed for virtual hosted sites
- pathRewrite: {
- '^/apis': '' // rewrite path
- }
- },
- }
- }
- }
|