XRoomDashboardFront/xroom-dashboard/vue.config.js

10 lines
173 B
JavaScript
Raw Normal View History

2025-04-14 13:09:00 +00:00
const { defineConfig } = require('@vue/cli-service')
2025-05-12 08:23:03 +00:00
2025-04-14 13:09:00 +00:00
module.exports = defineConfig({
2025-05-12 08:19:20 +00:00
transpileDependencies: true,
2025-05-12 08:23:03 +00:00
devServer: {
allowedHosts: 'all',
}
2025-04-14 13:09:00 +00:00
})