@paimaexample/explorer 0.7.1 → 0.8.0
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/client/dist/index.html
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
|
|
7
7
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
8
8
|
<title>Paima Explorer</title>
|
|
9
|
-
<script type="module" crossorigin src="/assets/index-
|
|
9
|
+
<script type="module" crossorigin src="/assets/index-gdTpVmFj.js"></script>
|
|
10
10
|
<link rel="stylesheet" crossorigin href="/assets/index-CySCkzzV.css">
|
|
11
11
|
</head>
|
|
12
12
|
|
package/package.json
CHANGED
package/server/main.ts
CHANGED
|
@@ -8,8 +8,8 @@ const router = new Router();
|
|
|
8
8
|
|
|
9
9
|
app.use(router.routes());
|
|
10
10
|
app.use(routeStaticFilesFrom([
|
|
11
|
-
`${
|
|
12
|
-
`${
|
|
11
|
+
`${process.cwd()}/client/dist`,
|
|
12
|
+
`${process.cwd()}/client/public`,
|
|
13
13
|
]));
|
|
14
14
|
|
|
15
15
|
// If this is the entry point, start the server
|