diff options
author | 2021-07-15 18:14:46 +0000 | |
---|---|---|
committer | 2021-07-15 18:14:46 +0000 | |
commit | f51f6c85d124226dbf35205f0550862a47ed3d5f (patch) | |
tree | 3dcdaf3019cc20362d41ae7bd791424f6e651288 /docs/src/pages/reference/configuration-reference.md | |
parent | 166e22bdf35b9751dc42f5cc6cb27a99b077df93 (diff) | |
download | astro-f51f6c85d124226dbf35205f0550862a47ed3d5f.tar.gz astro-f51f6c85d124226dbf35205f0550862a47ed3d5f.tar.zst astro-f51f6c85d124226dbf35205f0550862a47ed3d5f.zip |
[ci] yarn format
Diffstat (limited to 'docs/src/pages/reference/configuration-reference.md')
-rw-r--r-- | docs/src/pages/reference/configuration-reference.md | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/docs/src/pages/reference/configuration-reference.md b/docs/src/pages/reference/configuration-reference.md index 055024ca8..33e188a3d 100644 --- a/docs/src/pages/reference/configuration-reference.md +++ b/docs/src/pages/reference/configuration-reference.md @@ -21,10 +21,15 @@ export default { // tailwindConfig: '', // Path to tailwind.config.js if used, e.g. './tailwind.config.js' }, // component renderers which are enabled by default - renderers: ['@astrojs/renderer-svelte', '@astrojs/renderer-vue', '@astrojs/renderer-react', '@astrojs/renderer-preact'], + renderers: [ + '@astrojs/renderer-svelte', + '@astrojs/renderer-vue', + '@astrojs/renderer-react', + '@astrojs/renderer-preact', + ], }; ``` ## Snowpack Config -Astro is powered internally by Snowpack. You can configure Snowpack directly by creating a `snowpack.config.js` file. See [snowpack.dev](https://www.snowpack.dev/reference/configuration) for full documentation on this file.
\ No newline at end of file +Astro is powered internally by Snowpack. You can configure Snowpack directly by creating a `snowpack.config.js` file. See [snowpack.dev](https://www.snowpack.dev/reference/configuration) for full documentation on this file. |