diff --git a/src/routes/+page.svelte b/src/routes/+page.svelte
index a8ca672..10c129a 100644
--- a/src/routes/+page.svelte
+++ b/src/routes/+page.svelte
@@ -309,7 +309,9 @@
Welcome to Doichain Developer Playground
Key and Address Generation
-
+
+ {title} {__APP_VERSION__}
+
1. Generate mnemonic for a new wallet
diff --git a/svelte.config.js b/svelte.config.js
index 348fa32..32c581a 100644
--- a/svelte.config.js
+++ b/svelte.config.js
@@ -1,13 +1,16 @@
-import adapter from '@sveltejs/adapter-auto';
+import adapter from '@sveltejs/adapter-static'
/** @type {import('@sveltejs/kit').Config} */
const config = {
kit: {
- // adapter-auto only supports some environments, see https://kit.svelte.dev/docs/adapter-auto for a list.
- // If your environment is not supported or you settled on a specific environment, switch out the adapter.
- // See https://kit.svelte.dev/docs/adapters for more information about adapters.
- adapter: adapter()
- }
+ adapter: adapter({
+ pages: 'public',
+ assets: 'public',
+ fallback: 'offline.html',
+ precompress: true,
+ strict: false
+ }),
+ },
};
-export default config;
+export default config;
\ No newline at end of file