You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
However the imported css is not processed via PostCSS. If I directly in-line the css instead of importing it, PostCSS runs correctly.
Specifically concerned about nesting, here's my svelte.config
importadapterfrom'@sveltejs/adapter-auto'importpreprocessfrom'svelte-preprocess';importnestingfrom'postcss-nesting'/** @type {import('@sveltejs/kit').Config} */constconfig={// Consult https://kit.svelte.dev/docs/integrations#preprocessors// for more information about preprocessorspreprocess: preprocess({postcss: {plugins: [nesting()]}}),kit: {adapter: adapter()}};
Expected behavior
I'd like to keep my general css in it's own file, what is the best way to work here? I'd expect the imported css to be processed.
The text was updated successfully, but these errors were encountered:
I'm postcss'ing with mqpacker and sorting: true in order to get column widths working via placeholders, and the impact of this bug is quite big. Just not sure anymore where it started.
Describe the bug
In my
+layout.svelte
root file I have this import statement for my global cssHowever the imported css is not processed via PostCSS. If I directly in-line the css instead of importing it, PostCSS runs correctly.
Specifically concerned about nesting, here's my
svelte.config
Expected behavior
I'd like to keep my general css in it's own file, what is the best way to work here? I'd expect the imported css to be processed.
The text was updated successfully, but these errors were encountered: