vite-plugin-figlet
TypeScript icon, indicating that this package has built-in type declarations

1.1.0 • Public • Published

vite-plugin-figlet

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

screenshot

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 © 2023 Leif Arriens

Package Sidebar

Install

npm i vite-plugin-figlet

Weekly Downloads

0

Version

1.1.0

License

MIT

Unpacked Size

5.15 kB

Total Files

7

Last publish

Collaborators

  • leifarriens