vite-plugin-kiru 0.32.0 → 0.32.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +2 -2
- package/package.json +4 -4
package/dist/index.js
CHANGED
|
@@ -9549,11 +9549,11 @@ import {
|
|
|
9549
9549
|
generateStaticPaths as kiruServerGenerateStaticPaths
|
|
9550
9550
|
} from "kiru/router/server"
|
|
9551
9551
|
import Document from "${userDoc}"
|
|
9552
|
-
import { pages, layouts } from "${VIRTUAL_ROUTES_ID}"
|
|
9552
|
+
import { baseUrl, pages, layouts } from "${VIRTUAL_ROUTES_ID}"
|
|
9553
9553
|
|
|
9554
9554
|
export async function render(url, ctx) {
|
|
9555
9555
|
const { registerModule, registerPreloadedPageProps } = ctx
|
|
9556
|
-
return kiruServerRender(url, { registerModule, registerPreloadedPageProps, Document, pages, layouts })
|
|
9556
|
+
return kiruServerRender(url, { registerModule, registerPreloadedPageProps, Document, baseUrl, pages, layouts })
|
|
9557
9557
|
}
|
|
9558
9558
|
|
|
9559
9559
|
export async function generateStaticPaths() {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vite-plugin-kiru",
|
|
3
|
-
"version": "0.32.
|
|
3
|
+
"version": "0.32.1",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"author": "",
|
|
10
10
|
"license": "ISC",
|
|
11
11
|
"peerDependencies": {
|
|
12
|
-
"kiru": ">=0.54.
|
|
12
|
+
"kiru": ">=0.54.1"
|
|
13
13
|
},
|
|
14
14
|
"devDependencies": {
|
|
15
15
|
"@types/node": "^22.17.0",
|
|
@@ -17,8 +17,8 @@
|
|
|
17
17
|
"rollup": "^4.46.2",
|
|
18
18
|
"tsx": "^4.20.3",
|
|
19
19
|
"typescript": "^5.9.2",
|
|
20
|
-
"kiru-devtools-
|
|
21
|
-
"kiru-devtools-
|
|
20
|
+
"kiru-devtools-client": "^0.0.0",
|
|
21
|
+
"kiru-devtools-host": "^1.0.0"
|
|
22
22
|
},
|
|
23
23
|
"dependencies": {
|
|
24
24
|
"glob": "^12.0.0",
|