2025-07-07 22:17:50 +08:00
|
|
|
const { defineConfig } = require('@vue/cli-service')
|
|
|
|
module.exports = defineConfig({
|
2025-07-09 12:34:30 +08:00
|
|
|
transpileDependencies: true,
|
|
|
|
devServer: {
|
2025-07-12 01:59:09 +08:00
|
|
|
host: '0.0.0.0',
|
2025-07-09 12:34:30 +08:00
|
|
|
port: 8080,
|
|
|
|
historyApiFallback: true,
|
|
|
|
allowedHosts: "all"
|
|
|
|
}
|
2025-07-07 22:17:50 +08:00
|
|
|
})
|