mirror of
https://github.com/nagisa77/OpenIsle.git
synced 2026-03-05 03:20:45 +08:00
12 lines
277 B
JavaScript
12 lines
277 B
JavaScript
const { defineConfig } = require('@vue/cli-service')
|
|
module.exports = defineConfig({
|
|
publicPath: process.env.NODE_ENV === 'production'
|
|
// ? '/ai-cv/'
|
|
? '/OpenIsle/'
|
|
: '/',
|
|
transpileDependencies: true,
|
|
configureWebpack: {
|
|
devtool: 'source-map'
|
|
},
|
|
})
|