You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
367 B
JavaScript
12 lines
367 B
JavaScript
2 years ago
|
// const { defineConfig } = require('@vue/cli-service')
|
||
|
// module.exports = defineConfig({
|
||
|
// transpileDependencies: true
|
||
|
// })
|
||
|
module.exports = {
|
||
|
// 关闭打包生成map文件
|
||
|
productionSourceMap: false,
|
||
|
// 关闭ESLINT校验工具
|
||
|
lintOnSave: false,
|
||
|
css: {},
|
||
|
configureWebpack: config => { config.entry.app = ["@babel/polyfill", "./src/main.js"]; },
|
||
|
}
|