fix: missing process.env.API_URL
This commit is contained in:
parent
0c0d90fd50
commit
afdca3af48
@ -8,13 +8,15 @@ dotenv.config({
|
||||
|
||||
process.env.MFSU_AD = 'none';
|
||||
|
||||
const baseUrl = `http://localhost:${process.env.API_PORT || '13001'}/`;
|
||||
|
||||
export default defineConfig({
|
||||
favicon: '/favicon.png',
|
||||
nodeModulesTransform: {
|
||||
type: 'none',
|
||||
},
|
||||
define: {
|
||||
'process.env.API_URL': process.env.API_URL || 'http://127.0.0.1',
|
||||
'process.env.API_URL': process.env.API_URL || `${baseUrl}api/`,
|
||||
'process.env.API_PORT': process.env.API_PORT || '13001',
|
||||
},
|
||||
proxy: {
|
||||
|
Loading…
Reference in New Issue
Block a user