eleventy-plugin-vite icon indicating copy to clipboard operation
eleventy-plugin-vite copied to clipboard

A plugin to use Vite with Eleventy

Results 23 eleventy-plugin-vite issues
Sort by recently updated
recently updated
newest added

I'm setting up the following rollup config: ``` module.export = { "input": "./apps/docs/assets/bundled-scripts/live-sample.js", "output": { "dir": "./dist/apps/docs/assets/scripts/", "format": "cjs" }, "plugins": [ virtualPlugin, nodeResolve(), terser(), ] } ``` When I...

For my (rather sizeable) project, while trying to convert it from Webpack to Vite via `eleventy-plugin-vite`, I get this warning: ``` MaxListenersExceededWarning: Possible EventEmitter memory leak detected. 101 eleventy.resourceModified listeners...

setup: windows 10, eleventy v2.0.0-beta.1, Node v16.14.1, vscode v1.74.3 code in `.eleventy.js`: ```js const vitePlugin = require("@11ty/eleventy-plugin-vite"); module.exports = function(eleventyConfig) { eleventyConfig.addPlugin(vitePlugin); eleventyConfig.setTemplateFormats([ "ejs" ]); eleventyConfig.setEjsOptions({ async: true }); eleventyConfig.addPassthroughCopy("css");...

needs test case

Hi I've been cracking my head on this one and would appreciate another view. I have `eleventyConfig.addPassthroughCopy('src/assets/images')` set up because i want to use the images on my `og:image` tags....

When deploying to gitlab pages (and locally), basically deploying to a subdir, I did not manage to get eleventy-plugin-vite working together with the eleventy build argument `--pathprefix` and the [eleventy...

If you’re interested, please get in touch! Responsibilities would include PR reviews and issue triage for this repository. There isn’t a lot of volume here! If that goes well it...

open-question

For new users there should be a more clear error/warning message if the default `.11ty-vite` temporary directory is missing. Build output from a website project with the latest Eleventy canary...

The current website I have uses Nunchucks as templating language, md for posts, and that's mostly it. The config is quite straightforward for a blog. I've taken most of the...

Hi, I have this public repository: https://github.com/martonx/vaporizer Quite simple 11ty project with vite. But when my Github Actions runs, I got this error: Run pnpm build > [email protected] build /home/runner/work/vaporizer/vaporizer/Frontend...

`publicDir: "public"` is a reserved Vite directory and Eleventy can’t use the same value for its output directory. We need a better error message here. Found via @aarongoldenthal on this...

bug