diff options
author | 2021-06-21 15:34:22 -0400 | |
---|---|---|
committer | 2021-06-21 15:34:22 -0400 | |
commit | 0abd251cda3e74f055674ddbd6d267fb7d02c4c0 (patch) | |
tree | 1fa960c33efbf3f029270eef30af54ae927aabd7 /docs/renderers.md | |
parent | b2a72ccac4d5a3756cbc3035754ea6dce799c09b (diff) | |
download | astro-0abd251cda3e74f055674ddbd6d267fb7d02c4c0.tar.gz astro-0abd251cda3e74f055674ddbd6d267fb7d02c4c0.tar.zst astro-0abd251cda3e74f055674ddbd6d267fb7d02c4c0.zip |
Removes snowpack warning suppression (#504)
* Start of warnings
* Provide knownEntrypoints by renderers
This allows renderers to provide knownEntrypoints that will be forwarded to snowpack. This gets rid of renderer-specific warnings and allows us to remove the snowpack logging hacks we were doing.
* Adds a changeset
Diffstat (limited to 'docs/renderers.md')
-rw-r--r-- | docs/renderers.md | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/docs/renderers.md b/docs/renderers.md index 9abc69262..aaaab0913 100644 --- a/docs/renderers.md +++ b/docs/renderers.md @@ -100,6 +100,7 @@ export default { server: './server.js', // relative path to the server entrypoint snowpackPlugin: '@snowpack/plugin-xxx', // optional, the name of a snowpack plugin to inject snowpackPluginOptions: { example: true }, // optional, any options to be forwarded to the snowpack plugin + knownEntrypoint: ['framework'] // optional, entrypoint modules that will be used by compiled source }; ``` |