fix: basename should always be prefix???

This commit is contained in:
Aarnav Tale
2025-07-10 11:30:23 -04:00
parent ce4617d0e1
commit 7691f74d43
2 changed files with 1 additions and 2 deletions
-1
View File
@@ -139,7 +139,6 @@ export async function loader({
auth_key: preAuthKey.key,
} satisfies EphemeralNodeInsert)
.returning();
console.log('Created ephemeral node:', ephemeralNode);
return {
ipnDetails: {
+1 -1
View File
@@ -24,7 +24,7 @@ const config = await readFile('config.example.yaml', 'utf-8');
const { server } = parse(config);
export default defineConfig(({ isSsrBuild }) => ({
base: isSsrBuild ? `${prefix}/` : undefined,
base: `${prefix}/`,
plugins: [
reactRouterHonoServer(),
reactRouter(),