v1.0.3
Breaking Astro update on styles and misplaced stylelintrc file
Changes
- Updated to Astro 0.20.3. As of Astro 0.20.0 compiling in the
/public
folder is no longer supported, so all*.scss
files are now moved to/src/styles
and dynamically imported inDefaultLayout.astro
like this:
<!-- global css -->
<link rel="stylesheet" href={Astro.resolve('../styles/globals.css')} />
Fixes
- Moved the stylelintrc file from the
/public
folder to theroot
folder