This repository has been archived on 2025-06-18. You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.
casino/frontend/env.js

8 lines
No EOL
243 B
JavaScript

// env.js - Script to replace environment variables at runtime
(function(window) {
window.__env = window.__env || {};
// Environment variables
window.__env.STRIPE_KEY = '${STRIPE_KEY}';
window.__env.API_URL = '${API_URL}';
})(this);