Add config to disable experimental public entry point

Signed-off-by: benjdlambert <ben@blam.sh>
This commit is contained in:
benjdlambert
2026-05-26 10:33:37 +02:00
parent acf1945a83
commit ca450bec54
3 changed files with 20 additions and 1 deletions
+9
View File
@@ -42,5 +42,14 @@ export interface Config {
* If you disable this, it is recommended to set a `staticFallbackHandler` instead.
*/
disableStaticFallbackCache?: boolean;
/**
* Disables the experimental public entry point used for unauthenticated
* sign-in pages. When the app is bundled with an
* `index-public-experimental` entry point, the app backend will
* automatically serve it to unauthenticated users. Set this to `true` to
* skip that behavior and always serve the main entry point instead.
*/
disableExperimentalPublicEntryPoint?: boolean;
};
}