MCSM-UI/vue.config.js
2021-07-07 14:28:32 +08:00

26 lines
457 B
JavaScript

/*
* @Author: Copyright(c) 2020 Suwings
* @Date: 2021-05-08 21:46:34
* @LastEditTime: 2021-07-06 22:21:25
* @Description:
*/
// vue.config.js
/**
* @type {import('@vue/cli-service').ProjectOptions}
*/
module.exports = {
// options...
pages: {
index: {
entry: "src/app/index.js",
template: "public/index.html",
filename: "index.html",
title: "控制面板 | MCSMANAGER"
}
},
devServer: {
port: 8088
}
};