You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jul 9, 2023. It is now read-only.
const loader = new FileMinifyLoader("src/includes", {
watch: true,
noCache: false,
});
const nunjucksEnvironment = new Nunjucks.Environment(loader);
eleventyConfig.setLibrary("njk", nunjucksEnvironment);
The command npx @11ty/eleventy hangs after copying files. The same command with the --serve flag works fine.
Switching out the config for the default config (provided below) doesn't hang.
const nunjucksEnvironment = new Nunjucks.Environment(
new Nunjucks.FileSystemLoader("src/includes")
);
eleventyConfig.setLibrary("njk", nunjucksEnvironment);
So it has to be an issue with this module... Any help?
The text was updated successfully, but these errors were encountered:
With this configuration:
The command
npx @11ty/eleventy
hangs after copying files. The same command with the--serve
flag works fine.Switching out the config for the default config (provided below) doesn't hang.
So it has to be an issue with this module... Any help?
The text was updated successfully, but these errors were encountered: