Izzuddin Natsir
Izzuddin Natsir
Maybe we can make use of custom lib feature: https://www.typescriptlang.org/docs/handbook/release-notes/typescript-4-5.html So we create an npm package that contains both lib dom and workers-type while removing dom types that are overrided...
Try use github master branch version instead of the stable version. Then follow the master branch doc instruction, the link is available in README. ``` [dependencies] quaint = { git...
Have you read [https://deno.land/[email protected]/testing/sanitizers](https://deno.land/[email protected]/testing/sanitizers)? I experienced the same issue before while testing with database connection, even after I manually close the connection after all steps is completed as you did...
Vercel also supports it via custom request headers: https://vercel.com/docs/concepts/edge-network/headers#x-vercel-ip-country From my experience working with custom headers is easier than custom request property when using Typescript.
@ugurarici You need to import the defaultTheme object first: ```js const defaultTheme = require('tailwindcss/defaultTheme') ``` Also make sure tailwindcss npm package is installed as dev dependency.
`async_hooks` Node.js polyfill is also missing, required for Prisma.
SandpackFile and SandpackBundlerFile has no information about what encoding is suitable to encode or decode the code. So, all are treated as `utf-8`. Not all files are encodable into `utf-8`,...
If I change `@vitejs/plugin-react` `jsxRuntime` setting to `classic` and consequentially adding `import * as React from 'react'`, it works as expected. But, React Refresh needs the `jsxRuntime` to be `automatic`....
@lettucebowler has made a PR for this #8667.
I'll try to submit a PR.