- Install the plugin:
npm install --save-dev @chicory-lang/vite-plugin-chicory
- Add the plugin to your
vite.config.js
:
import { defineConfig } from 'vite';
import chicory from '@chicory-lang/vite-plugin-chicory';
export default defineConfig({
plugins: [chicory()],
});
For more information about developing with Chicory, see the Chicory documentation.