// 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"]; }, }