@meetdomaine/vite-plugin-project-syrah
v1.0.10
Published
To use the @meetdomaine/vite-plugin-project-syrah Vite plugin, follow these steps:
Downloads
1,110
Readme
Vite Plugin Project Syrah
To use the @meetdomaine/vite-plugin-project-syrah Vite plugin, follow these steps:
- Install the plugin by running the following command in your project directory:
npm install @meetdomaine/vite-plugin-project-syrah
- In your Vite configuration file (
vite.config.js
), import the plugin and add it to theplugins
array:
import syrahPlugin from '@meetdomaine/vite-plugin-project-syrah'
import { defineConfig } from 'vite'
export default defineConfig({
plugins: [
syrahPlugin({
cwd: __dirname,
}),
],
})