Skip to content

Commit 78cd502

Browse files
committed
Deploy with vercel
1 parent cd33ca9 commit 78cd502

File tree

4 files changed

+616
-1884
lines changed

4 files changed

+616
-1884
lines changed

app/works/[id]/page.jsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
import {EditorPage} from "../../EditorPage.jsx";
33
import {useParams} from "next/navigation";
44

5-
export const runtime = "edge";
6-
75
export default function Page() {
86
const {id} = useParams();
97
return <EditorPage id={id} />;

next.config.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
/** @type {import('next').NextConfig} */
22
const nextConfig = {
3-
// basePath: '/notebook',
4-
// assetPrefix: '/notebook',
3+
basePath: "/notebook",
4+
assetPrefix: "/notebook",
55
};
66

77
export default nextConfig;
8-

package.json

Lines changed: 12 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,48 +1,45 @@
11
{
22
"type": "module",
33
"scripts": {
4-
"vercel-build": "next build",
54
"dev": "vite",
65
"app:dev": "next dev",
76
"app:build": "next build",
8-
"app:build-cloudflare": "npx @cloudflare/next-on-pages",
97
"app:start": "next start",
108
"test": "npm run test:lint && npm run test:format && npm run test:js",
119
"test:js": "TZ=America/New_York vitest",
1210
"test:format": "prettier --check editor runtime test app",
1311
"test:lint": "eslint"
1412
},
1513
"devDependencies": {
16-
"@cloudflare/next-on-pages": "^1.13.16",
17-
"@tailwindcss/postcss": "^4.1.13",
14+
"@tailwindcss/postcss": "^4.1.14",
1815
"clsx": "^2.1.1",
19-
"eslint": "^9.36.0",
16+
"eslint": "^9.37.0",
2017
"eslint-config-prettier": "^10.1.8",
2118
"eslint-plugin-react": "^7.37.5",
2219
"eslint-plugin-react-hooks": "^5.2.0",
2320
"globals": "^16.4.0",
2421
"lucide-react": "^0.542.0",
2522
"postcss": "^8.5.6",
2623
"prettier": "^3.6.2",
27-
"react-tooltip": "^5.29.1",
24+
"react-tooltip": "^5.30.0",
2825
"tailwind-merge": "^3.3.1",
29-
"tailwindcss": "^4.1.13",
30-
"vite": "^7.1.7",
26+
"tailwindcss": "^4.1.14",
27+
"vite": "^7.1.10",
3128
"vitest": "^3.2.4"
3229
},
3330
"dependencies": {
3431
"@babel/runtime": "^7.28.4",
35-
"@codemirror/autocomplete": "^6.18.7",
36-
"@codemirror/commands": "^6.8.1",
32+
"@codemirror/autocomplete": "^6.19.0",
33+
"@codemirror/commands": "^6.9.0",
3734
"@codemirror/lang-javascript": "^6.2.4",
3835
"@codemirror/language": "^6.11.3",
3936
"@codemirror/language-data": "^6.5.1",
4037
"@codemirror/lint": "^6.9.0",
4138
"@codemirror/state": "^6.5.2",
42-
"@codemirror/view": "^6.38.3",
39+
"@codemirror/view": "^6.38.6",
4340
"@fontsource-variable/inter": "^5.2.8",
4441
"@fontsource-variable/spline-sans-mono": "^5.2.8",
45-
"@lezer/highlight": "^1.2.1",
42+
"@lezer/highlight": "^1.2.2",
4643
"@observablehq/notebook-kit": "^1.4.1",
4744
"@observablehq/runtime": "^6.0.0",
4845
"@uiw/codemirror-theme-github": "^4.25.2",
@@ -54,11 +51,11 @@
5451
"d3-require": "^1.3.0",
5552
"eslint-linter-browserify": "^9.37.0",
5653
"friendly-words": "^1.3.1",
57-
"next": "^15.5.3",
54+
"next": "^15.5.6",
5855
"nstr": "^0.1.3",
5956
"object-inspect": "^1.13.4",
60-
"react": "^19.1.1",
61-
"react-dom": "^19.1.1",
57+
"react": "^19.2.0",
58+
"react-dom": "^19.2.0",
6259
"shiki": "^3.13.0",
6360
"short-uuid": "^5.2.0",
6461
"source-map-support": "^0.5.21"

0 commit comments

Comments
 (0)