diff --git a/contrib/aura-clock/rollup.config.js b/contrib/aura-clock/rollup.config.js
index ce3c9ebab55bbcfb3dae3733df62e5d1107b0373..f79bbd64c126b432d482fc9a60502e6f356a5971 100644
--- a/contrib/aura-clock/rollup.config.js
+++ b/contrib/aura-clock/rollup.config.js
@@ -12,7 +12,7 @@ export default {
 		sourcemap: true,
 		format: 'iife',
 		name: 'app',
-		file: 'public/build/bundle.js'
+		file: 'public/build/aura-clock-bundle.js'
 	},
 	plugins: [
 		svelte({
@@ -21,7 +21,7 @@ export default {
 			// we'll extract any component CSS out into
 			// a separate file - better for performance
 			css: css => {
-				css.write('public/build/bundle.css');
+				css.write('public/build/aura-clock-bundle.css');
 			}
 		}),
 
diff --git a/contrib/aura-player/rollup.config.js b/contrib/aura-player/rollup.config.js
index f0d05500e4497eb094cf5556bd96afdbf505642c..91ba9dd08d5a41e966733148aad516de01e5ac5d 100644
--- a/contrib/aura-player/rollup.config.js
+++ b/contrib/aura-player/rollup.config.js
@@ -12,7 +12,7 @@ export default {
 		sourcemap: true,
 		format: 'iife',
 		name: 'app',
-		file: 'public/build/bundle.js'
+		file: 'public/build/aura-player-bundle.js'
 	},
 	plugins: [
 		svelte({
@@ -21,7 +21,7 @@ export default {
 			// we'll extract any component CSS out into
 			// a separate file — better for performance
 			css: css => {
-				css.write('public/build/bundle.css');
+				css.write('public/build/aura-player-bundle.css');
 			}
 		}),