13 lines
269 B
JavaScript
13 lines
269 B
JavaScript
module.exports = {
|
|
env: {
|
|
NODE_ENV: '"production"'
|
|
},
|
|
defineConstants: {
|
|
__APP_ENV__: '"production"',
|
|
// Replace with the production backend before release builds.
|
|
__API_BASE_URL__: '"https://banban.api.talkingq.com"',
|
|
},
|
|
mini: {},
|
|
h5: {}
|
|
}
|