const {
defineConfig
} = require('@vue/cli-service')
module.exports = defineConfig({
devServer: {
host: '0.0.0.0',
// https:true,
client: {
webSocketURL: 'ws://0.0.0.0:3002/ws',
},
historyApiFallback: true,
allowedHosts: "all",
port: 3002,
headers: {
'Access-Control-Allow-Origin': '*',
}
}
})