const { defineConfig } = require('@vue/cli-service') module.exports = defineConfig({ transpileDependencies: true, lintOnSave:false, //关闭eslint检查 // 具体使用情况还需要看项目的配置 publicPath: process.env.NODE_ENV === 'production' ? './' : '/', assetsDir: 'static', })