@fine-dev/vite-plugin
v0.0.4
Published
A plugin for using Fine devtools with Vite
Downloads
4
Readme
Fine Devtools - Vite Plugin
This plugin for Vite facilitates the use of Fine's devtools during interactive preview sessions.
Usage
- To install the plugin in your project, start by running the following in your terminal:
npm i @fine-dev/vite-plugin
- In your vite config file, you can now import the newly installed plugin:
import fine from @fine-dev/vite-plugin
- Update your vite configuration object to use the plugin based on the following example:
Vite's overlay behaves as an error boundary. Removing it is required to ensure that Fine catches all errors.defineConfig({ plugins: [fine()] })