diff options
author | 2022-01-28 17:10:52 -0500 | |
---|---|---|
committer | 2022-01-28 17:10:52 -0500 | |
commit | 69d5b70900c6392bae1db89efcad57dbdcfa87da (patch) | |
tree | 7a02ec7d0934ef70dd58545d5b5157a49b4862aa /examples/fast-build/src | |
parent | aebe7f57d9fc26344046137bdce5e425c3bbf999 (diff) | |
download | astro-69d5b70900c6392bae1db89efcad57dbdcfa87da.tar.gz astro-69d5b70900c6392bae1db89efcad57dbdcfa87da.tar.zst astro-69d5b70900c6392bae1db89efcad57dbdcfa87da.zip |
Fix use of preprocessors with the static build (#2490)
* Fix use of preprocessors with the static build
* Adds a changeset
Diffstat (limited to 'examples/fast-build/src')
-rw-r--r-- | examples/fast-build/src/pages/index.astro | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/examples/fast-build/src/pages/index.astro b/examples/fast-build/src/pages/index.astro index ef0136b27..24ec0039a 100644 --- a/examples/fast-build/src/pages/index.astro +++ b/examples/fast-build/src/pages/index.astro @@ -16,6 +16,12 @@ import ExternalHoisted from '../components/ExternalHoisted.astro'; color: salmon; } </style> + <style lang="scss"> + $color: purple; + h2 { + color: purple; + } + </style> </head> <body> <section> |