nailart/na-frontend/vue.config.js

11 lines
230 B
JavaScript
Raw Normal View History

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