Files
Message-Push-Nest/web/config.js
T

11 lines
171 B
JavaScript
Raw Normal View History

2024-01-02 11:50:54 +08:00
// config.js
const isProduction = process.env.NODE_ENV === 'prod';
const config = {
apiUrl: isProduction ? '' : 'http://localhost:8000',
};
export default config;