Files
server/web/config/prod.env.js
2025-11-02 19:34:16 +08:00

7 lines
297 B
JavaScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
'use strict'
module.exports = {
NODE_ENV: '"production"',
BASE_API: '""', // 保持为空字符串,使用相对路径
BASE_URL: '"https://joeyzhou.chat"', // 您的生产环境前端URL
BACKEND_URL: '"https://joeyzhou.chat"' // 生产环境下为空使用相对路径由Nginx代理
}