-
Notifications
You must be signed in to change notification settings - Fork 224
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'feat/2499-theming_config-options' into feat/2499-themin…
…g_color-palettes-and-scales
- Loading branch information
Showing
1 changed file
with
35 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,38 @@ | ||
themes: | ||
defaultAppearance: system | ||
appearanceSwitcher: true | ||
|
||
plugins: | ||
components: | ||
# This loads all of evidence's core charts and UI components | ||
# You probably don't want to edit this dependency unless you know what you are doing | ||
"@evidence-dev/core-components": {} | ||
|
||
# Loading a plugin: | ||
# your-component-plugin: {} | ||
# | ||
# Adding aliases: | ||
# your-component-plugin: | ||
# aliases: | ||
# SomeLongComponent: Alias | ||
# | ||
# Adding overrides: | ||
# your-component-plugin: | ||
# aliases: | ||
# SomeLongChartComponent: BarChart | ||
# overrides: | ||
# - BarChart | ||
# | ||
# Adding normal Svelte component library: | ||
# your-svelte-component-library: | ||
# provides: | ||
# - SomeComponent | ||
# - SomeOtherComponent | ||
# | ||
# For more info: https://docs.evidence.dev/plugins/using-plugins/ | ||
datasources: | ||
# You can add additional datasources here by adding npm packages. | ||
# Make to also add them to `package.json`. | ||
"@evidence-dev/csv": { } | ||
"@evidence-dev/duckdb": { } | ||
"@evidence-dev/faker-datasource": { } |