@hadeshe93/builder-vite
v1.0.0
Published
A chainable tool work with vite just like "webpack-chain".
Downloads
22
Readme
A chainable tool work with vite just like "webpack-chain".
And i am still working on it.
Installation
$ npm install @hadeshe93/vite-chain
Usage
import ViteChain from '@hadeshe93/vite-chain';
import vue from '@vitejs/plugin-vue'
const chainConfig = new ViteChain();
const finalViteConfig =
chainConfig
.plugin('vue')
.use(vue())
.end()
.toConfig();