diff options
author | 2022-02-23 17:11:38 -0600 | |
---|---|---|
committer | 2022-02-23 17:11:38 -0600 | |
commit | f64840ece11458995eb98684590f035a47840fee (patch) | |
tree | 3300f78d948de9456437446ae5d427547868a515 /examples/blog-multiple-authors | |
parent | fe31eca414f1c6c703ea2acf9b6a096528db0762 (diff) | |
download | astro-f64840ece11458995eb98684590f035a47840fee.tar.gz astro-f64840ece11458995eb98684590f035a47840fee.tar.zst astro-f64840ece11458995eb98684590f035a47840fee.zip |
Add sass dev dep to blog-multiple-authors example (#2643)
Otherwise, new stackblitz projects throw an error.
Diffstat (limited to 'examples/blog-multiple-authors')
-rw-r--r-- | examples/blog-multiple-authors/package.json | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/examples/blog-multiple-authors/package.json b/examples/blog-multiple-authors/package.json index 207f9bc7b..a6cc292ed 100644 --- a/examples/blog-multiple-authors/package.json +++ b/examples/blog-multiple-authors/package.json @@ -9,6 +9,7 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^0.23.0" + "astro": "^0.23.0", + "sass": "^1.49.8" } } |