123456789101112131415161718192021222324 |
- module.exports = {
- devServer: {
- proxy: {
- '/clmt': {
- // target: 'http://192.168.0.48:8082/',
- target: 'http://192.168.0.11:8082/',
- changeOrigin: true,
- secure: false,
- },
- },
- // 关闭esline
- overlay: {
- warnings: false,
- errors: false
- },
- // lintOnSave: false
- },
- lintOnSave: false,
- publicPath: '/poc_web',
- // 打包名称
- outputDir: 'poc_web',
- // 放置生成的静态资源 (js、css、img、fonts) 的 (相对于 outputDir 的) 目录
- assetsDir: 'static',
- };
|