Firebase – How to display all items from Firestore in Svelte?
Im trying to make a To-do app. I can get all the information from firebase in the console, however the only item I can get to display in the ui is the last one. How can i display all of…
Im trying to make a To-do app. I can get all the information from firebase in the console, however the only item I can get to display in the ui is the last one. How can i display all of…
With the help from SO community I was finally able to dockerize my Sveltekit app and access it from the browser (this was an issue initially). So far so good, but now every time I perform a code change I…
I've got a Svelte (with Sveltekit) app which I just containerized. It builds correctly and there are no errors when running, but I cannot access it from the browser. I tried accessing http://localhost:5050/ and also http://0.0.0.0:5050/ but I'm getting: This…
I'm facing a problem with sveltejs. I'm trying to make a really simple frontend server with svelte to figure out if the flow of my backend in nest is ok. Long story short, the backend make an oauth call to…
I separated my .svelte, .ts and .scss in 3 distinct file eveything work but the linting in VSCode isn't working
Vscode seems to be weirdly highlighting some of my html elements in .svelte files. this is so distracting its borderline unusable. This seems to be most evident in the button element. Has anyone encountered this before? I currently have 3…
I've created an app using Sveltekit and I want to host it statically on Firebase. My svelte.config.js file is as follows: import adapter from '@sveltejs/adapter-static'; import preprocess from 'svelte-preprocess'; /** @type {import('@sveltejs/kit').Config} */ const config = { kit: { adapter:…
I have created a svelte app and building app using SvelteKit everything is works fine. I tried to deploy this app in firebase hosting but it fails. Sveltekit generating production build under .svelte-kit folder. I tried to change the public…
I am playing around with Firebase and Svelte at the moment and wondering about the best way to set up a Firebase app object that I can use from several components. For example, I have two different components/pages (client side…
I am new to Svelte, and am trying to create a login page to an API. The API takes a username and password and returns an Authorization header. I see the authorization header in the F12 developer console, and I…