fix: basename should always be prefix???
This commit is contained in:
parent
ce4617d0e1
commit
7691f74d43
@ -139,7 +139,6 @@ export async function loader({
|
|||||||
auth_key: preAuthKey.key,
|
auth_key: preAuthKey.key,
|
||||||
} satisfies EphemeralNodeInsert)
|
} satisfies EphemeralNodeInsert)
|
||||||
.returning();
|
.returning();
|
||||||
console.log('Created ephemeral node:', ephemeralNode);
|
|
||||||
|
|
||||||
return {
|
return {
|
||||||
ipnDetails: {
|
ipnDetails: {
|
||||||
|
|||||||
@ -24,7 +24,7 @@ const config = await readFile('config.example.yaml', 'utf-8');
|
|||||||
const { server } = parse(config);
|
const { server } = parse(config);
|
||||||
|
|
||||||
export default defineConfig(({ isSsrBuild }) => ({
|
export default defineConfig(({ isSsrBuild }) => ({
|
||||||
base: isSsrBuild ? `${prefix}/` : undefined,
|
base: `${prefix}/`,
|
||||||
plugins: [
|
plugins: [
|
||||||
reactRouterHonoServer(),
|
reactRouterHonoServer(),
|
||||||
reactRouter(),
|
reactRouter(),
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user