wildpig 2.2.0 → 2.2.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/package.json +1 -1
- package/src/entry/client.tsx +1 -1
package/package.json
CHANGED
package/src/entry/client.tsx
CHANGED
|
@@ -2,7 +2,7 @@ import { createBrowserRouter } from "react-router";
|
|
|
2
2
|
import routes from "../router";
|
|
3
3
|
import { hydrateRoot } from "react-dom/client"
|
|
4
4
|
// 这个文件由Vite加载
|
|
5
|
-
const { App } = await import('
|
|
5
|
+
const { App } = await import('/src/App'!);
|
|
6
6
|
|
|
7
7
|
const render = () => {
|
|
8
8
|
// 获取serverData
|