Liu Yuhui

Results 3 comments of Liu Yuhui

Also, fonts may have ligation sets to choose from. eg. ss07, HSKL of Iosevka: https://typeof.net/Iosevka/ VSCode allows settings like: `"editor.fontLigatures": "'ss07', 'HSKL'",` in addition to true/false. WezTerm allows settings like:...

My understanding is that the doc says these database options are just **defaults for table options**, which seems to make sense. And I think it's a valid use case like...

I'm able to workaround with `transpilePackages` options: ```js // next.config.mjs /** @type {import('next').NextConfig} */ const nextConfig = { reactStrictMode: true, transpilePackages: ["@ory/elements-react", "@ory/nextjs"], } export default nextConfig ``` But I...