idquia
Version:
Web3-Onboard makes it simple to connect Ethereum hardware and software wallets to your dapp. Features standardised spec compliant web3 providers for all supported wallets, framework agnostic modern javascript UI with code splitting, CSS customization, mul
26 lines (20 loc) • 446 B
JavaScript
import adapter from '@sveltejs/adapter-static'
import preprocess from 'svelte-preprocess'
/** @type {import('@sveltejs/kit').Config} */
const config = {
extensions: ['.svelte', '.md'],
kit: {
adapter: adapter(),
prerender: {
entries: ['*'],
handleHttpError: 'warn',
handleMissingId: 'warn'
}
},
package: {
dir: 'client',
emitTypes: true
},
preprocess: [preprocess()]
}
export default config