11 lines
230 B
JavaScript
11 lines
230 B
JavaScript
const { defineConfig } = require('@vue/cli-service')
|
|
module.exports = defineConfig({
|
|
transpileDependencies: true,
|
|
devServer: {
|
|
host: '0.0.0.0',
|
|
port: 8080,
|
|
historyApiFallback: true,
|
|
allowedHosts: "all"
|
|
}
|
|
})
|