nailart/na-frontend/vue.config.js

11 lines
232 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: 'localhost',
port: 8080,
historyApiFallback: true,
allowedHosts: "all"
}
2025-07-07 22:17:50 +08:00
})