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