Difinity is a blockchain container. I need a rock solid example on how to deploy a standard sveltekit app to it.
Their web page doesn’t cover sveltekit https://dfinity.org/svelte/
Here is my dfx.json file:
{
"canisters": {
"assets": {
"dependencies": [],
"frontend": {
"entrypoint": "build/index.html"
},
"source": ["build"],
"type": "assets"
}
},
"defaults": {
"build": {
"output": "canisters",
"packtool": ""
}
},
"dfx": "0.9.3",
"networks": {
"local": {
"bind": "127.0.0.1:8000",
"type": "ephemeral"
},
"ic": {
"providers": ["https://mainnet.dfinity.network"],
"type": "persistent"
}
},
"version": 1
}
The command npm run build
will build a static version of my sveltekit app in ./build
We fixed the issue by adding some polyfills:
in svelte.config.js