Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions src/installation/integrations.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,3 +64,17 @@ https://www.npmjs.com/package/@inventory/parcel-plugin-handlebars
TODO: Write text here

https://www.npmjs.com/package/parcel-plugin-handlebars-precompile

## Vite: vite-plugin-handlebars

The [vite-plugin-handlebars](https://github.com/alexlafroscia/vite-plugin-handlebars) package for Vite 2 allows for
running your HTML files through the Handlebars compiler. Once installed, it can be added to Vite like so:

```js
// vite.config.js
import handlebars from "vite-plugin-handlebars";

export default {
plugins: [handlebars()],
};
```