Results 6 comments of Jesper

It would be cool if this `${1}` match could be disabled. It gets returned on every single keystroke and I never use it. Even after changing source priority in nvi-cmp...

Also an issue for pnpm as previous commenter mentioned. When running pnpx sb init / upgrade: ``` • Installing upgrades • Preparing to install dependencies. ✓ npm ERR! code EUNSUPPORTEDPROTOCOL...

For now these steps should work to setup a package in a monorepo (I'm using Svelte & pnpm): ``` mkdir monorepo-package pnpm init pnpm i svelte # To make SB...

You need to load your files through a web server, not directly from the file system (e.g http-server). Also make sure that your web server sets the correct mime type...

Just got bit by this... an opt-in solution for svelte:options would be nice!

I spent an entire evening pulling my hair on this issue but with vercel postgres. `@vercel/postgres` uses `process.env.POSTGRES_URL` (which is undefined in production). This worked for me (explicitly setting the...