akfm
akfm
Same [here](https://rome.tools/#differences-with-prettierdprint) with the `playground` link. Part: `Please check our playground`
> Anyway what is the problem with css-loader and import sheet from './styles.css' assert { type: 'css' };? Import results are different for `css-loader` and `css module script`. ```js //...
> hm, we can fix it, if assert { type: "css" } setted we can return CSSStyleSheet With the support of `css module scripts`, I think it's difficult for users...
@alexander-akait thx a lot! Should I keep this issue open?
@alexander-akait It looks like the fix is complete, should I close the Issue?
Similar results were obtained with `npx create-react-app xxx`. Is this planned to be fixed in the next release? ``` Installing template dependencies using npm... npm ERR! code ERESOLVE npm ERR!...
This problem also occurs when running [examples/hello-world](https://github.com/AkifumiSato/next.js/tree/canary/examples/hello-world). Is there any progress?
OpenAPI `$ref` can contain `~1`, but not `/`, so it seems necessary to escape to `~1`. https://swagger.io/docs/specification/using-ref/#escape > Error: Schema #/paths/~1api~1hoge/fuga not found The above example contains `/fuga`. If I...
Incidentally, the following tests were successful test code ```ts import type { OpenAPIObject } from "openapi3-ts"; import { expect, test } from "vitest"; import { generateZodClientFromOpenAPI } from "../src"; //...