1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- const path = require('path');
- const question = path.resolve(__dirname, '../question-examine');
- const frame = path.resolve(__dirname, '../frame');
- const ip = 'http://127.0.0.1';
- module.exports = {
- publicPath: process.env.NODE_ENV === 'development' ? '/' : '/student',
- outputDir: 'student',
- configureWebpack: (config) => {
- Object.assign(config, {
- // 开发生产共同配置
- resolve: {
- alias: {
- '@': path.resolve(__dirname, './src'),
- '@c': path.resolve(__dirname, './src/components'),
- '@a': path.resolve(__dirname, './src/assets'),
- '@question': question,
- '@frame': frame,
- },
- },
- });
- },
- devServer: {
- port: '8001',
- //api地址前缀
- proxy: {
- '/files': {
- target: 'http://jytz.jilinjobs.cn',
- changeOrigin: true,
- ws: true,
- },
- '/ws': {
- target: 'http://jytz.jilinjobs.cn',
- ws: true,
- },
- '/weixin': {
- target: 'http://jytz.jilinjobs.cn',
- changeOrigin: true,
- ws: true,
- },
- '/api': {
- target: ip,
- changeOrigin: true,
- ws: true,
- },
- },
- },
- };
|