2023-05-10 19:36:44 +08:00
|
|
|
const { defineConfig } = require("@vue/cli-service");
|
2023-05-06 15:55:27 +08:00
|
|
|
module.exports = defineConfig({
|
2023-05-09 15:14:10 +08:00
|
|
|
transpileDependencies: true,
|
|
|
|
devServer: {
|
2023-06-08 16:54:34 +08:00
|
|
|
host: '0.0.0.0',
|
|
|
|
// host: "127.0.0.1",
|
2023-05-10 19:36:44 +08:00
|
|
|
port: 8000,
|
|
|
|
},
|
2023-05-14 16:12:59 +08:00
|
|
|
publicPath: './'
|
2023-05-10 19:36:44 +08:00
|
|
|
});
|