vite-plugin-figlet
v1.3.0
Published
A Vite plugin that allows you to display FIGfont-style text during the startup of your [vite](https://github.com/vitejs/vite) development server.
Downloads
22
Maintainers
Readme
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