Petr Siegl

Results 6 comments of Petr Siegl

I have the same issue. Once in a while the mentioned error happens: `Server certificate CA fingerprint does not match the value configured in caFingerprint` This is client init: ```javascript...

Your code changes login shell of the `root` user thanks to the `become: yes`. You need to specify your user name: ``` shell: chsh -s $(which zsh) your_username tags: *tags_for_zsh_tasks...

You have set it as a boolean, not a string: ``` pagination : false, ```

The problem you have encountered is caused by this line in `package.json`: ``` }, "packageManager": "[email protected]" } ``` You can safely remove it. It's experimental field and defines what package...

You would do the same as for pure Svelte: https://supabase.com/docs/guides/getting-started/tutorials/with-svelte

The tutorial doesn't use any server-side hooks, as it's tutorial for svelte therefore no hooks exists. Just go from top to bottom of the linked tutorial and you will have...