Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

vite-plugin-directory-index

jcbhmr17MIT3.0.1

📂 Directory index plugin for the Vite dev server

directory-index, folder-list, folder, directory, vite, vite-plugin, vite-plugin-list-directory-contents

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

npm Yarn pnpm

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

// 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!