20 lines
442 B
JavaScript
20 lines
442 B
JavaScript
|
|
|
|
export default {
|
|
env: {
|
|
NODE_ENV: JSON.stringify('production'),
|
|
baseApiUrl: JSON.stringify('http://192.168.1.65:8880'),
|
|
name: JSON.stringify('production'),
|
|
appId: JSON.stringify('wx87a5db19138da60d'),
|
|
},
|
|
mini: {},
|
|
h5: {
|
|
compile: {
|
|
include: [
|
|
// 确保产物为 es5
|
|
filename => /node_modules\/(?!(@babel|core-js|style-loader|css-loader|react|react-dom))/.test(filename)
|
|
]
|
|
},
|
|
}
|
|
}
|