Skip to content

v1.0.3

Compare
Choose a tag to compare
@markteekman markteekman released this 28 Aug 08:30
7e3c22d

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 in DefaultLayout.astro like this:
<!-- global css -->
<link rel="stylesheet" href={Astro.resolve('../styles/globals.css')} />

Fixes

  • Moved the stylelintrc file from the /public folder to the root folder