vite-plugin-directory-index
v3.0.1
Published
๐ Directory index plugin for the Vite dev server
Downloads
119
Maintainers
Readme
Directory index plugin for Vite
๐ Directory index plugin for the Vite dev server
โก Works with Vite
๐ Great for HTML files in subfolders like test/app.test.html
๐ฅ๏ธ Rendered on the server only in development
๐ฆ Doesn't affect your build output
Installation
You can install this package using npm or your favorite npm package manager like Yarn or pnpm.
npm install --save-dev vite-plugin-directory-index
Usage
// vite.config.js
import { defineConfig } from "vite";
import directoryIndex from "vite-plugin-directory-index";
// https://vitejs.dev/config/
export default defineConfig({
plugins: [directoryIndex()],
});
Options
This plugin respects the server.fs
options. Other than that, there's no
available configuration. If you have need a config option, open an Issue!