1.2.0 • Published 11 months ago

vite-plugin-figlet v1.2.0

Weekly downloads
-
License
MIT
Repository
github
Last release
11 months ago

vite-plugin-figlet

A Vite plugin that allows you to display FIGfont-style text during the startup of your vite development server.

Usage

npm i -D vite-plugin-figlet

With default config

import { defineConfig } from 'vite';
import figlet from 'vite-plugin-figlet';

export default defineConfig({
  plugins: [figlet('Vite Plugin Figlet')],
});

With custom font

export default defineConfig({
  plugins: [
    figlet('Vite Plugin Figlet', {
      font: 'Avatar',
    }),
  ],
});

See all configurable options.

License

MIT License © 2024 Leif Arriens

1.2.0

11 months ago

1.1.0

1 year ago

1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago