You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
896 B
25 lines
896 B
'use strict'
|
|
const merge = require('webpack-merge')
|
|
const prodEnv = require('./prod.env')
|
|
|
|
module.exports = merge(prodEnv, {
|
|
NODE_ENV: '"development"',
|
|
BASE_API: '"http://127.0.0.1:8001"',
|
|
// BASE_API: '"https://narwhale.chace-ai.net"',
|
|
// BASE_API: '"http://47.112.242.103:8000"',
|
|
|
|
//BASE_API: "'http://192.168.0.4:8001'",
|
|
// BASE_API: '"https://test.nw.chace-ai.net"',
|
|
// BASE_API: '"http://192.168.31.38:8000"',
|
|
//CHACE_AI_API: '"http://47.112.242.103:8001"',
|
|
//CHACE_DOMAIN: '"http://47.112.242.103"',
|
|
|
|
// CHACE_AI_API: '"http://192.168.31.38:8000"',
|
|
// CHACE_DOMAIN: '"http://192.168.31.38:8000"',
|
|
// CHACEAI_DOMAIN: '"http://192.168.31.38:8000"',
|
|
|
|
//CHACEAI_DOMAIN: '"https://test.chace-ai.com"',
|
|
// VUE_APP_WS_BASE_API: '"ws://localhost:8000"',
|
|
// VUE_APP_WS_BASE_API: '"wss://test.chace-pro.com"',
|
|
VUE_APP_WS_BASE_API: '"https://test.3x.chace-ai.net"',
|
|
})
|
|
|