pay-mini/config/prod.js
2025-09-23 10:44:06 +08:00

21 lines
595 B
JavaScript

export default {
env: {
NODE_ENV: JSON.stringify('production'),
baseApiUrl: JSON.stringify('https://www.wuzhongjie.com.cn/prod-api'),
name: JSON.stringify('production'),
// appId: JSON.stringify('wx87a5db19138da60d'), // 无终街(原小程序)
appId: JSON.stringify('wx2fb87f0f1f05d314'), // 无终街科技(新申请的新主体小程序)
},
mini: {},
h5: {
compile: {
include: [
// 确保产物为 es5
filename => /node_modules\/(?!(@babel|core-js|style-loader|css-loader|react|react-dom))/.test(filename)
]
},
}
}