mirror of
https://github.com/tale/headplane.git
synced 2026-07-26 07:48:14 +00:00
21 lines
904 B
Diff
21 lines
904 B
Diff
diff --git a/dist/adapters/node.js b/dist/adapters/node.js
|
|
index e081ab36a04ea100cf5da3fb5eb54c5174186f4d..35433810d05a829f2c824d63714e71bf5ed069a0 100644
|
|
--- a/dist/adapters/node.js
|
|
+++ b/dist/adapters/node.js
|
|
@@ -49,13 +49,13 @@ async function createHonoServer(options) {
|
|
}
|
|
await mergedOptions.beforeAll?.(app);
|
|
app.use(
|
|
- `/${import.meta.env.REACT_ROUTER_HONO_SERVER_ASSETS_DIR}/*`,
|
|
+ `${import.meta.env.REACT_ROUTER_HONO_SERVER_BASENAME}${import.meta.env.REACT_ROUTER_HONO_SERVER_ASSETS_DIR}/*`,
|
|
cache(60 * 60 * 24 * 365),
|
|
// 1 year
|
|
serveStatic({ root: clientBuildPath, ...mergedOptions.serveStaticOptions?.clientAssets })
|
|
);
|
|
app.use(
|
|
- "*",
|
|
+ `${import.meta.env.REACT_ROUTER_HONO_SERVER_BASENAME}*`,
|
|
cache(60 * 60),
|
|
// 1 hour
|
|
serveStatic({ root: PRODUCTION ? clientBuildPath : "./public", ...mergedOptions.serveStaticOptions?.publicAssets })
|