12345678910111213141516 |
- const Timestamp = new Date().getTime();
- module.exports = {
- publicPath: '/', // 默认'/',部署应用包时的基本 URL
- lintOnSave: false, //关闭语法检查
- devServer: {
- /* proxy: {
- '/api': {
- target: 'https://localhost:5001', //后端接口
- changeOrigin: true,
- pathRewrite: {
- '^/api': ''
- }
- }
- }, */
- },
- }
|