mirror of
https://github.com/pocket-id/pocket-id.git
synced 2026-02-04 15:39:45 +00:00
feat: restrict oidc clients by user groups per default (#1164)
This commit is contained in:
@@ -7,7 +7,13 @@ const config = {
|
||||
// Consult https://kit.svelte.dev/docs/integrations#preprocessors
|
||||
// for more information about preprocessors
|
||||
preprocess: vitePreprocess(),
|
||||
|
||||
compilerOptions: {
|
||||
warningFilter: (warning) => {
|
||||
// Ignore "state_referenced_locally" warnings
|
||||
if (warning.code === 'state_referenced_locally') return false;
|
||||
return true;
|
||||
}
|
||||
},
|
||||
kit: {
|
||||
// adapter-auto only supports some environments, see https://kit.svelte.dev/docs/adapter-auto for a list.
|
||||
// If your environment is not supported, or you settled on a specific environment, switch out the adapter.
|
||||
|
||||
Reference in New Issue
Block a user