1234567891011121314151617181920212223 |
- const axios_default_ip = "http://fyy_api.qingyaokeji.com";
- process.env.VUE_APP_BASE_URL = axios_default_ip;
- module.exports = {
- publicPath: './',
- outputDir: 'dist',
- assetsDir: 'static',
- indexPath: 'index.html',
- productionSourceMap: process.env.NODE_ENV === 'development',
- devServer: {
- // https: true,
- proxy: {
- "/postek/print": {
- target: "http://192.168.1.110:888",
- ws: true, // proxy websockets
- changeOrigin: true,
- // pathRewrite: {
- // '^/postek': '', // rewrite path
- // },
- }
- }
- },
- lintOnSave: false // 禁用eslint 便于开发
- }
|