Simon

Results 4 comments of Simon

Same issue with [no-invalid-html](https://github.com/43081j/eslint-plugin-lit/blob/master/docs/rules/no-invalid-html.md), when trying to use e.g. the code from the [lit docs](https://lit.dev/docs/templates/expressions/#static-expressions) ```js render() { return html` ${this.caption} `; } ``` Results in > Template contained invalid...

There is already another issue for vite support open https://github.com/whitespace-se/storybook-addon-html/issues/59

The problem is not directly, that there are no ESM builds of this addon, because Vite does support CommonJS. The problem is, that babel transpiles to the `exports` syntax (since...

Like you hinted at, in the alternatives, it's fairly straightforward to build out your own sitemap generation. So just for reference, an implementation idea that might work for you, using...