Skip to content

Commit

Permalink
publishingn on ipfs, adding version to title
Browse files Browse the repository at this point in the history
  • Loading branch information
silkroadnomad committed Nov 29, 2024
1 parent da821d0 commit 23c82b1
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 8 deletions.
4 changes: 3 additions & 1 deletion src/routes/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,9 @@
<h1>Welcome to Doichain Developer Playground</h1>
<h2>Key and Address Generation</h2>
<svelte:head>
<title>{title} {__APP_VERSION__}</title>
</svelte:head>
<Grid>
<Row>
<Column><h2>1. Generate mnemonic for a new wallet</h2></Column>
Expand Down
17 changes: 10 additions & 7 deletions svelte.config.js
Original file line number Diff line number Diff line change
@@ -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;

0 comments on commit 23c82b1

Please sign in to comment.