I'm exploring SvelteKit for the first time, I built my simple first application and I'd like to deploy it to my Apache server as a static page As far as I under
I have a svelte page to show a list of post, I need to give the user the ability to filter that list by several conditions, eg: year, tags, category, etc. All t
<style> color: red; </style> Some html content! this code does not work. In the Angular framework it can be done by using the :host selector.
Yesterday I was trying to translate a problem I had to solve in React, to Svelte, and I can't figure it out. The problem is the following: I have 3 inputs each
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
This is my config: import adapter from '@sveltejs/adapter-static'; import preprocess from 'svelte-preprocess'; import path from 'path'; /** @type {import('@sve
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
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 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
I'm iterating over an array of data and I want to do some processing on it before rendering it. I know that I could create a new component and pass array entry
I have a writable store with following data let array= writable({ skills: [{ id: 1,
I am importing a third-party Svelte3 component with several children. For the sake of example, the third-party component looks like the following: <script>
I am not getting how to change the default 5000 port in Svelte to some other port if we install the sample template through degit.