Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Copy of each JS and CSS is created for each generated HTML file. #84

Open
andeersg opened this issue Mar 19, 2025 · 3 comments
Open

Copy of each JS and CSS is created for each generated HTML file. #84

andeersg opened this issue Mar 19, 2025 · 3 comments

Comments

@andeersg
Copy link

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 instead
			rollupOptions: {
				output: {
					assetFileNames: 'assets/css/main.[hash].css',
					chunkFileNames: 'assets/js/[name].[hash].js',
					entryFileNames: 'assets/js/[name].[hash].js'
				},
				plugins: [],
			}
		}
	}
});

The manifest file looks like this:

{
  "2015/09/getting-started-with-jekyll/index.html": {
    "file": "assets/js/index.MGnWy-6q.js",
    "name": "index",
    "src": "2015/09/getting-started-with-jekyll/index.html",
    "isEntry": true,
    "imports": [
      "_build.DIG0cRH3.js"
    ]
  },
  "2015/10/css-calc-is-neat/index.html": {
    "file": "assets/js/index.BZyaCoE3.js",
    "name": "index",
    "src": "2015/10/css-calc-is-neat/index.html",
    "isEntry": true,
    "imports": [
      "_build.DIG0cRH3.js"
    ]
  },
}

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.

@KiwiKilian
Copy link
Contributor

KiwiKilian commented Mar 20, 2025

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?

@andeersg
Copy link
Author

I will try to make a reduced example 👍

@andeersg
Copy link
Author

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants