123456789101112131415 |
- module.exports = {
- devServer: {
- // 关闭esline
- overlay: {
- warnings: false,
- errors: false,
- },
- },
- lintOnSave: false,
- publicPath: '/persagyTopo',
- // 打包名称
- outputDir: 'persagyTopo',
- // 放置生成的静态资源 (js、css、img、fonts) 的 (相对于 outputDir 的) 目录
- assetsDir: 'static',
- }
|