pay-mini/config/prod.js

21 lines
595 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'),
2025-09-23 10:44:06 +08:00
// 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)
]
},
}
}