1.0.4 • Published 7 months ago
@etherna/vite-plugin v1.0.4
Etherna Vite Plugin
Run all the Etherna services in your vite app locally.
Installation
npm install @etherna/vite-plugin
// or
yarn add @etherna/vite-plugin
// or
pnpm add @etherna/vite-pluginUsage
Prerequisites
- Make sure docker is installed and running.
// vite.config.ts
import { defineConfig } from 'vite'
import { etherna } from '@etherna/vite-plugin'
export default defineConfig({
plugins: [
// ...
etherna(),
],
})Opt out from services
// ...
etherna({
mongo: false,
bee: false,
}),
// ...