Skip to content

Latest commit

 

History

History
32 lines (22 loc) · 562 Bytes

README.md

File metadata and controls

32 lines (22 loc) · 562 Bytes

vite-plugin-leader-line

A Vite plugin for leader-line

This plugin adds a default export for leader-line

Supporting Vite 3 and 4

📦 Install

# npm
npm i -D vite-plugin-leader-line

# yarn
yarn add -D vite-plugin-leader-line

Usage

Configure the following in vite.config.js :

import { defineConfig } from 'vite'
import VitePluginLeaderLine from 'vite-plugin-leader-line'

export default defineConfig({
  plugins: [
    VitePluginLeaderLine()
  ]
})