0.1.0 • Published 1 year ago

vite-plugin-semi-theming v0.1.0

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

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: {
      // ... 👆
      //},
    }),
  ],
});