mirror of
https://github.com/MCSManager/UI.git
synced 2024-11-21 03:15:46 +08:00
26 lines
457 B
JavaScript
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
|
|
}
|
|
};
|