vue2-project/vue.config.js
2023-12-14 17:58:13 +08:00

10 lines
171 B
JavaScript

const { defineConfig } = require('@vue/cli-service')
module.exports = defineConfig({
transpileDependencies: true,
devServer: {
port: 3002,
proxy: {},
},
})