Skip to content
Advertisement

Rollup : single html output

I’m trying to package my Svelte app into a single Html file output. I’ve managed to get the desired output with a configuration based on that answer : Output Single HTML File from Svelte Project

With “npm run dev” everything is fine with the first build, but I’m having issues following (live-reload) builds: bundle['bundle.css'] is not filled in my inlineSvelte‘s generateBundle function.

I didn’t manage to change the rollup-plugin-css-only for rollup-plugin-embed-css, which seemed to have an appropriate name for my needs.

Here’s my rollup.config.js :

JavaScript

Advertisement

Answer

It is surely possible to embed the produced CSS file in your HTML, at least with some reasonably simple custom plugin.

However, if you only have CSS in your Svelte components, that is you don’t have import 'whatever.css' anywhere in your code, you can just rely on Svelte injecting CSS from compiled JS code and be done with it.

This loses a little in terms of performance because such injected CSS will never be cached by the browser, but it avoids the added complexity / risk / coupling associated with a custom build step… And this kind of performance is often not so important in scenarios where you want all your app in a single HTML file.

To enable this, set emitCss: false on the Svelte plugin:

JavaScript

You won’t need any Rollup plugin for CSS in this case.

User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement