-
Notifications
You must be signed in to change notification settings - Fork 61
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
use vercel preset #82
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,28 +2,26 @@ | |
"private": true, | ||
"type": "module", | ||
"scripts": { | ||
"build": "react-router build && node vercel/prepare.js", | ||
"dev": "cross-env NODE_ENV=development node ./dev-server.js", | ||
"build": "react-router build", | ||
"dev": "react-router dev", | ||
"start": "react-router-serve ./build/server/index.js", | ||
"typecheck": "react-router typegen && tsc" | ||
}, | ||
"dependencies": { | ||
"@react-router/express": "*", | ||
"@react-router/node": "*", | ||
"@vercel/node": "^3.2.25", | ||
"express": "^4.21.1", | ||
"@react-router/node": "^7.1.5", | ||
"isbot": "^5.1.17", | ||
"react": "^19.0.0", | ||
"react-dom": "^19.0.0", | ||
"react-router": "*" | ||
"react-router": "^7.1.5" | ||
}, | ||
"devDependencies": { | ||
"@react-router/dev": "*", | ||
"@react-router/dev": "^7.1.5", | ||
"@tailwindcss/vite": "^4.0.0", | ||
"@types/express": "^5.0.0", | ||
"@types/node": "^20", | ||
"@types/react": "^19.0.1", | ||
"@types/react-dom": "^19.0.1", | ||
"cross-env": "^7.0.3", | ||
"@vercel/node": "^5.1.2", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I am not sure @vercel/node is necessary here. Works without it and will take ages for user to install it. |
||
"@vercel/react-router": "^1.0.2", | ||
"tailwindcss": "^4.0.0", | ||
"typescript": "^5.7.2", | ||
"vite": "^5.4.11", | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,9 @@ | ||
import type { Config } from "@react-router/dev/config"; | ||
import { vercelPreset } from "@vercel/react-router/vite"; | ||
|
||
export default { | ||
// Config options... | ||
// Server-side render by default, to enable SPA mode set this to `false` | ||
ssr: true, | ||
presets: [vercelPreset()], | ||
} satisfies Config; |
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,14 +3,7 @@ import tailwindcss from "@tailwindcss/vite"; | |
import { defineConfig } from "vite"; | ||
import tsconfigPaths from "vite-tsconfig-paths"; | ||
|
||
export default defineConfig(({ isSsrBuild, command }) => ({ | ||
build: { | ||
rollupOptions: isSsrBuild | ||
? { | ||
input: "./server/app.ts", | ||
} | ||
: undefined, | ||
}, | ||
export default defineConfig(({ command }) => ({ | ||
ssr: { | ||
noExternal: command === "build" ? true : undefined, | ||
}, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This still necessary? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'm unsure if it's necessary, I wasn't quite sure what it was for in the first place so I've left it alone |
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Start script is broken because build/server contains another folder
nodejs-eyJydW50aW1lIjoibm9kZWpzIn0
or a few per route.