vite-plugin-semi-theming
v0.1.0
Published
A Vite plugin for semi theming
Downloads
84
Readme
vite-plugin-semi-theming
A Vite plugin for semi theming.
Based on vite-plugin-semi-theme, but with some differences:
- ESM only
- Support pnpm
Usage
// vite.config.ts
import { defineConfig } from "vite";
import { semiTheming } from "vite-plugin-semi-theming";
export default defineConfig({
plugins: [
semiTheming({
theme: "@semi-bot/semi-theme-yours",
// options: {
// ... 👆
//},
}),
],
});