Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export default defineConfig({
// In CI, serve the built Worker + static assets via wrangler (instant, no compilation).
// Locally, use the vite dev server for HMR.
command: isCI
? "bunx wrangler dev dist/server/server.js --assets dist/client --port 3000 --compatibility-date 2025-09-02 --compatibility-flag nodejs_compat"
? "rm -rf .wrangler && bunx wrangler dev dist/server/index.js --assets dist/client --port 3000 --compatibility-date 2025-09-02 --compatibility-flag nodejs_compat"
: "bun run dev",
url: "http://localhost:3000",
reuseExistingServer: !isCI,
Expand Down
1 change: 1 addition & 0 deletions wrangler.jsonc
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"$schema": "node_modules/wrangler/config-schema.json",
"name": "my-app",
"main": "@tanstack/react-start/server-entry",
"compatibility_date": "2025-09-02",
"compatibility_flags": [
"nodejs_compat"
Expand Down
Loading