vue.config.js 382 B

123456789101112131415
  1. module.exports = {
  2. devServer: {
  3. // 关闭esline
  4. overlay: {
  5. warnings: false,
  6. errors: false,
  7. },
  8. },
  9. lintOnSave: false,
  10. publicPath: '/persagyTopo',
  11. // 打包名称
  12. outputDir: 'persagyTopo',
  13. // 放置生成的静态资源 (js、css、img、fonts) 的 (相对于 outputDir 的) 目录
  14. assetsDir: 'static',
  15. }