diff --git a/rollup.config.js b/rollup.config.js
index 8131e2b..b086afd 100644
--- a/rollup.config.js
+++ b/rollup.config.js
@@ -24,18 +24,22 @@ export default {
customElement: true
}
}),
- replace({
- values: {
- "this.attachShadow({ mode: 'open' });": ""
- },
- delimiters: ['', '']
- }),
- postcss(),
+ // replace({
+ // values: {
+ // "this.attachShadow({ mode: 'open' });": ""
+ // },
+ // delimiters: ['', '']
+ // }),
+ postcss(
+ {
+ extract: 'bundle.css'
+ }
+ ),
resolve({
browser: true,
dedupe: ['svelte', 'flowbite-svelte']
}),
- commonjs(),
- terser()
+ commonjs()//,
+ // terser()
]
};
\ No newline at end of file
diff --git a/src/components/EasyDBDetailView.svelte b/src/components/EasyDBDetailView.svelte
index 62527fc..076a5b5 100644
--- a/src/components/EasyDBDetailView.svelte
+++ b/src/components/EasyDBDetailView.svelte
@@ -1,6 +1,7 @@
{#if !$easydbInstanceDataStore }
@@ -28,5 +45,7 @@
Accessing the EasyDB instance...
{:else}
-
+
+
+
{/if}
\ No newline at end of file