Daniel Veremchuk
Daniel Veremchuk
Hey guys, a temporary fix is to open workspace settings and add: ```json { "flowide.pathToFlow": "${workspaceRoot}/node_modules/.bin/flow" } ```
@aamadeo27 You still have vscode validation on. Turn it off in user settings. `"javascript.validate.enable": false`
You should turn the lib into a string and serve it with your SSR app. I'm assuming you're using something like React here. Something like so: ```jsx import fontFaceOnLoad from...
**Some more information:** It seems that when the keyboard is "attempting" to reconnect (it keeps detaching itself), it has something to do with figuring out the `IOPowerManagement`. No other device...
@al45tair I've tried different cables and different ports, cleaning the ports, wiggling. It just doesn't wanna work.
I've tried putting it into "Standard". I tested it stock, standard, etc. It hasn't been doing anything but flashing on and off.
I dug into this yesterday, I don't believe this is possible unless a different in-memory filesystem is used, or node's `Module._findPath` is rewritten inside, specifically for memoryFs.
In addition, the limit for `formData` should be customizable. I'd love for my users to upload things through functions. Right now anything over 1mb causes issues.
https://github.com/ciscoheat/sveltekit-superforms/blob/e96f29bdd5f361a9220058d335193c1702a96e69/src/lib/index.ts#L1-L3 Looks like it's imported, then exported as default and Vite doesn't treeshake side-effect free css. Isn't it better to isolate SuperDebug into its own thing in `package.json` `exports`?
That's not the issue, if one does `import { superForm } from 'sveltekit-superforms'` it automatically imports `SuperDebug`'s CSS because rollup/vite can't treeshake CSS. The library file structure just needs a...