Update index.tsx

This commit is contained in:
암냥 2025-05-05 20:31:22 +09:00 committed by GitHub
commit 280242f021
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -9,6 +9,13 @@ const port = portArgIndex !== -1 && args[portArgIndex + 1] ?
parseInt(args[portArgIndex + 1]) : 3000;
const server = serve({
development: {
// New: enable console log streaming
console: true,
// Enable hot module reloading
hmr: true,
},
port: port,
routes: {
// Serve index.html for all unmatched routes.