diff --git a/bun.lockb b/bun.lockb index e0b71843..a03ebd56 100755 Binary files a/bun.lockb and b/bun.lockb differ diff --git a/package.json b/package.json index 6dd18673..6997cc7a 100644 --- a/package.json +++ b/package.json @@ -8,22 +8,22 @@ "start": "vinxi start" }, "devDependencies": { - "@iconify/json": "^2.2.190", - "unocss": "^0.58.5", - "@unocss/transformer-directives": "^0.58.5" + "@iconify/json": "^2.2.220", + "unocss": "^0.61.0", + "@unocss/transformer-directives": "^0.61.0" }, "dependencies": { "@docsearch/css": "^3.6.0", "@docsearch/js": "3", "@mdx-js/mdx": "^3.0.1", - "@solidjs/meta": "^0.29.3", - "@solidjs/router": "^0.13.0", - "@solidjs/start": "^0.6.1", + "@solidjs/meta": "^0.29.4", + "@solidjs/router": "^0.13.5", + "@solidjs/start": "^1.0.1", "@vinxi/plugin-mdx": "^3.7.1", "rehype-highlight": "^7.0.0", - "solid-js": "^1.8.15", + "solid-js": "^1.8.17", "solid-mdx": "^0.0.7", - "vinxi": "^0.3.10" + "vinxi": "^0.3.12" }, "engines": { "node": ">=18" diff --git a/src/app.tsx b/src/app.tsx index d8bc0ee5..1612f799 100644 --- a/src/app.tsx +++ b/src/app.tsx @@ -1,6 +1,6 @@ // @refresh reload import { Router } from "@solidjs/router"; -import { FileRoutes } from "@solidjs/start"; +import { FileRoutes } from "@solidjs/start/router"; import { Suspense } from "solid-js"; import Navbar from "~/components/Navbar"; import "virtual:uno.css"; diff --git a/tsconfig.json b/tsconfig.json index 2941bfb0..7d5871a0 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,19 +1,19 @@ { - "compilerOptions": { - "target": "ESNext", - "module": "ESNext", - "moduleResolution": "node", - "allowSyntheticDefaultImports": true, - "esModuleInterop": true, - "jsx": "preserve", - "jsxImportSource": "solid-js", - "allowJs": true, - "strict": true, - "noEmit": true, - "types": ["vinxi/client", "vite/client"], - "isolatedModules": true, - "paths": { + "compilerOptions": { + "target": "ESNext", + "module": "ESNext", + "moduleResolution": "bundler", + "allowSyntheticDefaultImports": true, + "esModuleInterop": true, + "jsx": "preserve", + "jsxImportSource": "solid-js", + "allowJs": true, + "strict": true, + "noEmit": true, + "types": ["vinxi/types/client"], + "isolatedModules": true, + "paths": { "~/*": ["./src/*"] } - } + } }