MCSM-UI/vue.config.js

31 lines
528 B
JavaScript
Raw Normal View History

2021-07-03 08:36:11 +08:00
/*
* @Author: Copyright(c) 2020 Suwings
* @Date: 2021-05-08 21:46:34
2021-12-04 19:38:55 +08:00
* @LastEditTime: 2021-08-30 10:43:11
2021-07-03 08:36:11 +08:00
* @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",
2021-12-04 19:38:55 +08:00
title: "MCSManager"
2021-07-03 08:36:11 +08:00
}
2021-07-07 14:28:32 +08:00
},
devServer: {
2021-12-04 19:38:55 +08:00
port: 8080,
2021-08-07 13:33:49 +08:00
proxy: {
"/api": {
target: "http://127.0.0.1:23333/"
}
}
2021-07-03 08:36:11 +08:00
}
};