vue.config.js 407 B

1234567891011121314
  1. // 从m3js模版加载vue cli配置信息
  2. const m3config = require("@wecise/m3js/mbase/vue.config")
  3. // 输出vue cli配置信息
  4. module.exports = m3config({
  5. // 开发阶段本地web服务
  6. devServer: {
  7. port: 8080, // 开发阶段本地服务端口,当前端口被占用时按自动+1处理
  8. },
  9. configureWebpack: {
  10. entry: {
  11. app: "./src/main.js"
  12. }
  13. }
  14. })