vue.config.js 307 B

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