From 8596a56375e01d3f69ac526ef4e80e347dd76e89 Mon Sep 17 00:00:00 2001 From: Aarnav Tale Date: Wed, 2 Apr 2025 14:28:05 -0400 Subject: [PATCH] chore: v0.5.7 --- CHANGELOG.md | 3 +++ app/layouts/shell.tsx | 2 +- package.json | 2 +- vite.config.ts | 2 +- 4 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3b74292..34a8248 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +### 0.5.7 (April 2, 2025) +- Hotfix an issue where assets aren't served under `/admin` or the prefix. + ### 0.5.6 (April 2, 2025) ### IMPORTANT diff --git a/app/layouts/shell.tsx b/app/layouts/shell.tsx index af51fcd..5fb903f 100644 --- a/app/layouts/shell.tsx +++ b/app/layouts/shell.tsx @@ -34,7 +34,7 @@ export async function loader({ // Onboarding is only a feature of the OIDC flow if (context.oidc && !request.url.endsWith('/onboarding')) { - let onboarded = true; + let onboarded = false; try { const { users } = await context.client.get<{ users: User[] }>( diff --git a/package.json b/package.json index 0e6ac45..710f8ea 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "headplane", "private": true, "sideEffects": false, - "version": "0.5.6", + "version": "0.5.7", "type": "module", "scripts": { "build": "react-router build", diff --git a/vite.config.ts b/vite.config.ts index 694ae6d..1a77960 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -19,7 +19,7 @@ if (!version) { } export default defineConfig(({ isSsrBuild }) => ({ - // base: `${prefix}/`, + base: `${prefix}/`, plugins: [reactRouterHonoServer(), reactRouter(), tsconfigPaths()], css: { postcss: {