Initial commit

This commit is contained in:
admin
2025-12-09 02:45:30 +08:00
commit 0bbb3d0a47
303 changed files with 22764 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
const env = 'development'
const configs = {
development: {
baseUrl: 'http://localhost:8000/api'
},
production: {
baseUrl: 'https://your-domain.example.com/api'
}
}
module.exports = configs[env]