- Go backend (server/)
- Frontend (web/, server/static/)
- Database and deployment files
- Scripts and docs
Co-Authored-By: 狸花猫/Claude-Qwen3.6-Plus 🐾
8 lines
187 B
JavaScript
8 lines
187 B
JavaScript
'use strict'
|
|
|
|
if (process.env.NODE_ENV === 'production') {
|
|
module.exports = require('./dist/runtime-dom.cjs.prod.js')
|
|
} else {
|
|
module.exports = require('./dist/runtime-dom.cjs.js')
|
|
}
|