Add tests for public entry point and rename config to disablePublicEntryPoint

Signed-off-by: benjdlambert <ben@blam.sh>
This commit is contained in:
benjdlambert
2026-05-26 10:43:45 +02:00
parent ca450bec54
commit f2d71d1d48
6 changed files with 115 additions and 12 deletions
+6 -6
View File
@@ -44,12 +44,12 @@ export interface Config {
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.
* Disables the 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;
disablePublicEntryPoint?: boolean;
};
}