dezhou-screen/vue.config.js
2023-06-08 16:54:34 +08:00

11 lignes
223 B
JavaScript

const { defineConfig } = require("@vue/cli-service");
module.exports = defineConfig({
transpileDependencies: true,
devServer: {
host: '0.0.0.0',
// host: "127.0.0.1",
port: 8000,
},
publicPath: './'
});