diff --git a/.env b/.env index 89761d5..4689d9f 100644 --- a/.env +++ b/.env @@ -17,9 +17,14 @@ SourceCode="https://github.com/company/app-name" ####################### # Theming ## Splash +## Document: https://nexus-polestar.korbsstudio.com/basics/configuration/#splash LoadingIndicator="Spinner" # "Spinner" "ProgressBar" "JumpingBalls" "GlowingBars" -Background="#232323" +SplashBackground="#232323" # Notifications +# Document: https://nexus-polestar.korbsstudio.com/basics/notifications/ ## Pushy -PushyAppId="YourAppIdHere" \ No newline at end of file +PushyAppId="63e9212d7446e48a2a0e8ec0" + +## Theming +NotificationType="Custom" # "Custom" "Native" \ No newline at end of file diff --git a/astro/config.ts b/astro/config.ts index df025d2..3a76500 100644 --- a/astro/config.ts +++ b/astro/config.ts @@ -15,7 +15,7 @@ export const APP = [{ export const SPLASH = [ { loading: import.meta.env.LoadingIndicator, - background: import.meta.env.Background + background: import.meta.env.SplashBackground } ]