1
Fork 0
This repository has been archived on 2024-05-27. You can view files and clone it, but cannot push or open issues or pull requests.
Nexus-Polestar/astro/config.ts

26 lines
1.1 KiB
TypeScript
Raw Normal View History

2023-02-13 13:57:11 -05:00
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////
/// PLEASE DO NOT TOUCH THIS FILE ///
/// This file is pulling data the ".env" file at the root of the project, please edit that file instead. ///
/// If your code editor shows the error "Property 'env' does not exist on type 'ImportMeta'.", please ignore. ///
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////
2023-02-01 14:10:09 -05:00
export const APP = [{
2023-02-13 13:57:11 -05:00
name: import.meta.env.Name,
company: import.meta.env.Company,
website: import.meta.env.Website,
support: import.meta.env.Support,
sourcecode: import.meta.env.SourceCode
2023-02-01 14:10:09 -05:00
}]
2023-02-07 16:46:24 -05:00
// Splash
export const SPLASH = [
{
2023-02-13 13:57:11 -05:00
loading: import.meta.env.LoadingIndicator,
background: import.meta.env.SplashBackground
2023-02-07 16:46:24 -05:00
}
]
// Sidebar
2023-02-11 11:03:51 -05:00
/// Theming
export const SIDEBARTHEMING = [{
// Edit the "Configuration for Theming" section in the `styles/index.scss`.
2023-02-13 13:57:11 -05:00
}]