vue.config.js 236 B

123456789
  1. const { defineConfig } = require('@vue/cli-service')
  2. module.exports = defineConfig({
  3. transpileDependencies: true,
  4. //基本路径 文件打包后放的位置
  5. publicPath:'./',
  6. productionSourceMap: false,
  7. assetsDir: 'assets',
  8. })