web/txim/vue.config.js
2025-03-13 09:45:04 +08:00

11 lines
251 B
JavaScript

const { defineConfig } = require("@vue/cli-service");
module.exports = defineConfig({
transpileDependencies: true,
devServer: {
client: {
overlay: false,
},
port: 8999, // 这里设置你想要的端口号,例如 8081
},
});