chore: v0.5.7
This commit is contained in:
parent
000ec620b4
commit
8596a56375
@ -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)
|
### 0.5.6 (April 2, 2025)
|
||||||
|
|
||||||
### IMPORTANT
|
### IMPORTANT
|
||||||
|
|||||||
@ -34,7 +34,7 @@ export async function loader({
|
|||||||
|
|
||||||
// Onboarding is only a feature of the OIDC flow
|
// Onboarding is only a feature of the OIDC flow
|
||||||
if (context.oidc && !request.url.endsWith('/onboarding')) {
|
if (context.oidc && !request.url.endsWith('/onboarding')) {
|
||||||
let onboarded = true;
|
let onboarded = false;
|
||||||
|
|
||||||
try {
|
try {
|
||||||
const { users } = await context.client.get<{ users: User[] }>(
|
const { users } = await context.client.get<{ users: User[] }>(
|
||||||
|
|||||||
@ -2,7 +2,7 @@
|
|||||||
"name": "headplane",
|
"name": "headplane",
|
||||||
"private": true,
|
"private": true,
|
||||||
"sideEffects": false,
|
"sideEffects": false,
|
||||||
"version": "0.5.6",
|
"version": "0.5.7",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"build": "react-router build",
|
"build": "react-router build",
|
||||||
|
|||||||
@ -19,7 +19,7 @@ if (!version) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export default defineConfig(({ isSsrBuild }) => ({
|
export default defineConfig(({ isSsrBuild }) => ({
|
||||||
// base: `${prefix}/`,
|
base: `${prefix}/`,
|
||||||
plugins: [reactRouterHonoServer(), reactRouter(), tsconfigPaths()],
|
plugins: [reactRouterHonoServer(), reactRouter(), tsconfigPaths()],
|
||||||
css: {
|
css: {
|
||||||
postcss: {
|
postcss: {
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user