123456789101112131415161718192021222324252627282930313233343536373839404142 |
- const MiniCssExtractPlugin = require('mini-css-extract-plugin');
- module.exports = {
- publicPath: process.env.env_config === 'prod' ? 'https://ydcommon.51yund.com/' :
- process.env.env_config === 'test' ? '/vapps/calory/' : '/',
-
- crossorigin: 'anonymous',
-
- productionSourceMap: false,
- transpileDependencies: ['swiper', 'dom7'],
-
-
- devServer: {
- host: "0.0.0.0",
- port: 8083,
- https: false,
- open: true,
- proxy: ''
- },
- configureWebpack: {
- externals: {
- 'axios': "axios"
- }
-
-
-
-
-
-
-
-
-
-
-
- }
- }
|