astro/packages/renderers/renderer-vue/index.js
Matthew Phillips 0abd251cda
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
2021-06-21 15:34:22 -04:00

7 lines
167 B
JavaScript

export default {
name: '@astrojs/renderer-vue',
snowpackPlugin: '@snowpack/plugin-vue',
client: './client',
server: './server',
knownEntrypoints: ['vue']
};