I have been trying to get my portfolio working on Github Pages with a custom domain, I have build everything with Sapper / Svelte. Locally everything works grea
I am having problems deploying my svelte web3 App to my VPS running Dokku. The structure of the folder is as follows: root |-->svelte |--> ... I found s
I have a SvelteKit landing page component that calculates and displays statistics. Because crunching the numbers out from the database is a heavy job, and this
I'm going through the Svelte tutorial and I'm on the custom store page (https://svelte.dev/tutorial/custom-stores). The sample code is written using a factory f
The Svelte documentation states that: Svelte converts your app into ideal JavaScript at build time, rather than interpreting your application code at run time.
I made a portfolio website, but this site doesn't stop loading. Sorce code is here. Does anyone have a solution? or the reason why this happens?
Background I am trying to use dgraph-js-http in a Svelte application. Error The initial error I was facing was: Uncaught ReferenceError: buffer is not defined
I am trying to set checkboxes active based on query parameters using Sveltekit. To achieve this, I tried to get all route query parameters using the 'url.search
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 ht
Context In my Svelte app, I have multiple pages, each showing one or multiple videos. For rendering the videos I reuse a video component (simplified): // video
I am currently writing an app with svelte, sapper and tailwind. So to get tailwind working I have added this to my rollup config svelte({ compilerOption
This is my config: import adapter from '@sveltejs/adapter-static'; import preprocess from 'svelte-preprocess'; import path from 'path'; /** @type {import('@sve
I have created a small component-library for myself based on this GitHub Repo: https://github.com/sveltejs/component-template This works fine and i have uploade
I'm trying to move a svelte SPA into Sveltekit. In my SPA, the communication schema is what I would call a "controller component" which takes care of displaying
I want to use Bootstrap (v4.5) in a Svelte (v3) project with custom theme. The bootstrap documentation states that you can do this with scss. So I've setup Svel
I have written a vanilla html app to test a Netlify function and it works I have attempted to write a Svelte application to mimic the same functionality The two
I want to dynamically import components without importing a specific component. I want to set the component name with a variable, received from the store: <s
In a SvelteKit project, I have included the a svelte type. My problem is that my linting (ESLint) throws an error saying that 'svelte' is not defined. My code i
I'm writing a test in jest for a svelte component which dynamically imports another component. The following snippet is the part where the dynamic import happen
I want to be able manage history of my SvelteKit app while simultaneously making sure the whole routing system of SvelteKit doesn't get affected in any way. Som