@11ty/eleventy-plugin-vite
A plugin to use Vite with Eleventy 2.0+.
- Runs Vite as Middleware in Eleventy Dev Server (try with Eleventy’s --incremental)
- Runs Vite build to postprocess your Eleventy build output
설치
.eleventy.js file:
const EleventyVitePlugin = require("@11ty/eleventy-plugin-vite");
module.exports = function(eleventyConfig) {
eleventyConfig.addPlugin(EleventyVitePlugin);
};