feat :init

This commit is contained in:
2025-11-02 19:34:16 +08:00
commit b767041311
617 changed files with 124099 additions and 0 deletions

10
web/config/dev.env.js Normal file
View File

@@ -0,0 +1,10 @@
'use strict'
const merge = require('webpack-merge')
const prodEnv = require('./prod.env')
module.exports = merge(prodEnv, {
NODE_ENV: '"development"',
BASE_API: '""', // 空字符串,因为开发环境使用代理
BASE_URL: '"http://localhost:8084"', // 开发环境前端URL
BACKEND_URL: '"http://localhost:8091"' // 开发环境后端URL
})