13 lines
275 B
JavaScript
13 lines
275 B
JavaScript
module.exports = {
|
|
env: {
|
|
NODE_ENV: '"development"'
|
|
},
|
|
defineConstants: {
|
|
__APP_ENV__: '"development"',
|
|
// Update this to your LAN backend when testing on a real device.
|
|
__API_BASE_URL__: '"https://banban.api.talkingq.com"',
|
|
},
|
|
mini: {},
|
|
h5: {}
|
|
}
|