vue.config.js内容如下:
const { defineConfig } = require(’@vue/cli-service’)
module.exports = defineConfig({
transpileDependencies: true,
baseUrl:process.env.NODE_ENV === ‘production’
? ‘./’
: ‘/’
})
控制台提示如下错误:
ERROR Invalid options in vue.config.js: “baseUrl” is not allowed
请问如何修改?谢谢