13 lines
250 B
JavaScript
13 lines
250 B
JavaScript
const { defineConfig } = require('@vue/cli-service')
|
|
|
|
module.exports = defineConfig({
|
|
publicPath: process.env.BRANCH_PATH || '/', // 👈 支持动态子路径部署
|
|
transpileDependencies: true,
|
|
dev: {
|
|
devtool: 'source-map',
|
|
}
|
|
|
|
})
|
|
|
|
|