Skip to content

Commit

Permalink
monograph: fix Cannot find module '@remix-run/server-runtime'
Browse files Browse the repository at this point in the history
  • Loading branch information
thecodrr committed Nov 24, 2024
1 parent cb0bc39 commit 0f4b2bd
Show file tree
Hide file tree
Showing 3 changed files with 127 additions and 5 deletions.
128 changes: 124 additions & 4 deletions apps/monograph/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions apps/monograph/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@
"devDependencies": {
"@remix-run/dev": "^2.12.1",
"@remix-run/serve": "^2.12.1",
"@remix-run/server-runtime": "^2.15.0",
"@types/bun": "^1.1.13",
"@types/html-to-text": "^9.0.4",
"@types/react": "^18.3.9",
Expand Down
3 changes: 2 additions & 1 deletion apps/monograph/vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,8 @@ export default defineConfig(({ isSsrBuild }) => ({
type: "module",
scripts: { start: pkg.scripts.start },
dependencies: {
"@napi-rs/canvas": pkg.dependencies["@napi-rs/canvas"]
"@napi-rs/canvas": pkg.dependencies["@napi-rs/canvas"],
"@remix-run/server-runtime": pkg.devDependencies["@remix-run/server-runtime"],
},
})
}),
Expand Down

0 comments on commit 0f4b2bd

Please sign in to comment.