@fine-dev/astro-plugin
v0.0.5
Published
A Vite plugin for using Fine devtools with Astro
Downloads
7
Readme
Fine Devtools - Astro Plugin
This Vite plugin facilitates the use of Fine's devtools with Astro during interactive preview sessions.
Usage
- To install the plugin in your project, start by running the following in your terminal:
npm i @fine-dev/astro-plugin
- In your astro config file, you can now import the newly installed plugin:
import fine from @fine-dev/astro-plugin
- Update your astro configuration object to use the plugin based on the following example:
defineConfig({ vite: { plugins: [fine()] } })