12345678910111213141516171819202122232425262728 |
- const baseUrl = '/pdflib'
- const webpack = require('webpack')
- module.exports = {
- publicPath: baseUrl,
- productionSourceMap: false,
- devServer: {
- port: 4000,
- proxy: {
- '/api/': {
- target: 'http://localhost:18099'
- // target: 'http://192.168.4.1:7001'
- },
- '/filespath/resource/': {
- target: 'http://jjzh.cc-lotus.info'
- }
- }
- },
- lintOnSave: false,
- chainWebpack: config => {
- config.plugin('provide').use(webpack.ProvidePlugin, [{
- $: 'jquery',
- jquery: 'jquery',
- jQuery: 'jquery',
- 'window.jQuery': 'jquery'
- }])
- }
- }
|