yujialong 8 months ago
parent b95a3c87c1
commit a6040e5cad
  1. 2637
      package-lock.json
  2. 1
      package.json
  3. 8
      vue.config.js

2637
package-lock.json generated

File diff suppressed because it is too large Load Diff

@ -12,6 +12,7 @@
"axios": "^0.19.2",
"core-js": "^3.6.5",
"element-ui": "^2.14.0",
"image-webpack-loader": "^8.1.0",
"lib-flexible": "^0.3.2",
"lodash": "^4.17.21",
"mavon-editor": "^2.10.4",

@ -28,4 +28,12 @@ module.exports = {
port: 8087
},
productionSourceMap: false,
chainWebpack: config => {
config.module
.rule("images")
.use("image-webpack-loader")
.loader("image-webpack-loader")
.options({ bypassOnDebug: true })
.end();
}
}
Loading…
Cancel
Save