8 lines
251 B
JavaScript
8 lines
251 B
JavaScript
const { defineConfig } = require('@vue/cli-service')
|
|
module.exports = defineConfig({
|
|
// 我们使用根节点,如果使用其他子目录,请设置具体的路径映射
|
|
publicPath: '/',
|
|
// 默认转换依赖
|
|
transpileDependencies: true
|
|
})
|