| 1234567891011121314151617181920212223242526272829 |
- const webpack = require('webpack')
- module.exports = {
- devServer: {
- proxy: {
- '^/api/question': {
- // target: 'http://localhost:4000',
- target: 'http://localhost:8080',
- ws: true,
- changeOrigin: true
- },
- '^/api/quiz': {
- // target: 'http://localhost:4000',
- target: 'http://localhost:8080',
- ws: true,
- changeOrigin: true
- }
- }
- },
- configureWebpack: {
- externals: {
- 'pdfjs': 'pdfjsLib'
- },
- plugins: [
- new webpack.ContextReplacementPlugin(/moment[/\\]locale$/, /zh-cn/)
- ]
- }
- }
|