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
I have a weird problem where a copy (with different hash) is created for each html file found in my output folder.
My eleventy-plugin-vite config looks like this:
config.addPlugin(EleventyVitePlugin,{tempFolderName: '.11ty-vite',viteOptions: {publicDir: 'public',clearScreen: false,server: {mode: 'development',middlewareMode: true,},appType: 'custom',build: {mode: 'production',sourcemap: 'false',manifest: true,// This puts CSS and JS in subfolders – remove if you want all of it to be in /assets insteadrollupOptions: {output: {assetFileNames: 'assets/css/main.[hash].css',chunkFileNames: 'assets/js/[name].[hash].js',entryFileNames: 'assets/js/[name].[hash].js'},plugins: [],}}}});
But with many more entries. And the script files only include some parts of the inline JS found in the HTML. None of my JS located in src/_dev/scripts/index.js.
Probably not a bug, but I don't know.
The text was updated successfully, but these errors were encountered:
Hard to tell, where your problem is, without a complete reproduction. Can you try to create a minimal reproduction? Are you referencing your index.js from your HTML?
I figured it out partly, when I changed the path to the src file JS started working correctly.
I still get "/assets/scss/style.scss doesn't exist at build time, it will remain unchanged to be resolved at runtime" for my SCSS-file but I guess there are some small things I'm doing wrong.
I have a weird problem where a copy (with different hash) is created for each html file found in my output folder.
My
eleventy-plugin-vite
config looks like this:The manifest file looks like this:
But with many more entries. And the script files only include some parts of the inline JS found in the HTML. None of my JS located in
src/_dev/scripts/index.js
.Probably not a bug, but I don't know.
The text was updated successfully, but these errors were encountered: