From c7ce5bd3f9e352c078ded9dbe18477796099ae6b Mon Sep 17 00:00:00 2001 From: Dominic Kempf Date: Tue, 8 Oct 2024 10:24:17 +0200 Subject: [PATCH] Generate better bundle names --- rollup.config.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rollup.config.js b/rollup.config.js index 14eed8c..0be9d17 100644 --- a/rollup.config.js +++ b/rollup.config.js @@ -9,7 +9,7 @@ import { sveltePreprocess } from 'svelte-preprocess'; export default { input: './src/bundle.js', output: { - file: 'bundle/bundle.js', + file: 'bundle/easydb.js', format: 'iife', name: 'EasyDBDetailView', inlineDynamicImports: true @@ -33,7 +33,7 @@ export default { } }), postcss({ - extract: "bundle.css" + extract: "easydb.css" }), resolve({ browser: true,