Maarten Berkenbosch
Maarten Berkenbosch
I've set up 2 targets. I suppose I have to use Deploy: Change switch? I'm getting this message when doing so. [vs-deploy] No swicthes available! settings ``` "deploy": { "targets":...
I'm trying to refactor some CRUD functions from some Svelte (gui) components into a JS file. Does svelte-apollo also work within a regular js file or do I need to...
In the example code you can use {#if ..} to wait for the query result. However, this obviously only works in the html part. I've tried async/await to capture the...
In this link I've read how to set up httpLink with headers: {authorization: Bearer "+ getToken() } https://github.com/timhall/svelte-apollo/issues/30 I would also like to add a wsLink with: connectionParams: {headers: {authorisation:...
I tried binding tooltips like this but that doesn't work. ``` const options = { radius: 1000 * 10, color: "red", fillOpacity: 1, fill: false, wrap: false, } const marker...
I'm getting this error using snowpack `Dependency Install Error: Package "svelte-persistent-store/dist/local" not found. Have you installed it?` Package was installed correctly with npm. Any ideas?
Looking at the docs I see everything declared inside a .svelte file between script tags. ``` import { persist, cookieStorage } from "@macfja/svelte-persistent-store" import { writable } from "svelte/store" const...