pay-mini/config/prod.js

20 lines
456 B
JavaScript
Raw Normal View History

export default {
env: {
NODE_ENV: JSON.stringify('production'),
2025-09-18 16:31:25 +08:00
baseApiUrl: JSON.stringify('https://www.wuzhongjie.com.cn/prod-api'),
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)
]
},
}
}