-
Hello, I am trying to add some parameterized routes to my Framework dashboard. I added dynamic paths to the config file dynamicPaths: [
"/presets/evens",
"/presets/odds"
] and added
After running
I have a @import url("observablehq:default.css");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css");
/* @import url("./abstract-light.css"); */
:root {
--theme-foreground: #1b1e23;
--theme-foreground-focus: #3b5fc0;
--theme-background-a: #ffffff;
}
:root {
--theme-background-b: color-mix(in srgb, var(--theme-foreground) 4%, var(--theme-background-a));
--theme-background: var(--theme-background-a);
--theme-background-alt: var(--theme-background-b);
--theme-foreground-alt: color-mix(in srgb, var(--theme-foreground) 90%, var(--theme-background-a));
--theme-foreground-muted: color-mix(in srgb, var(--theme-foreground) 60%, var(--theme-background-a));
--theme-foreground-faint: color-mix(in srgb, var(--theme-foreground) 50%, var(--theme-background-a));
--theme-foreground-fainter: color-mix(in srgb, var(--theme-foreground) 30%, var(--theme-background-a));
--theme-foreground-faintest: color-mix(in srgb, var(--theme-foreground) 14%, var(--theme-background-a));
color-scheme: light;
}
/* css classes continue */ I am not really sure what is causing the build to fail. Additionally, is running |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 5 replies
-
Beta Was this translation helpful? Give feedback.
-
My project is a modified version of the example Framework site after running Here is the general file structure. I didn't set up the I am still seeing the following error when running
|
Beta Was this translation helpful? Give feedback.
Thanks for the report. I’ve confirmed this is a bug on Windows and fixed in #1804.