12345678910111213 |
- 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,
- },
- lintOnSave: false // 禁用eslint 便于开发
- }
|