Dhruv Saxena
Dhruv Saxena
Regardless the operating system, I tried the same over linux vm as well as over github codespaces and end up with same error results
Well that will resolve most of the issues like this, thanks for clarifying :)
Is there any way to set fontFamily via theme customization?
Ok after a while found out the default theme options, https://github.com/jsartisan/react-native-magnus/blob/master/src/style/defaultTheme.ts also we can give default font-family like this in same `ThemeProvider` option, working and tested. Though it's not given...
Still facing the same issue. A simple hello world build is taking over 9-mins to deploy No build cache found. Please configure build caching for faster rebuilds.
With React this should work. ```typescript import * as EditorJSInlineStyle from "editorjs-style"; ... tools: { ... style: EditorJSInlineStyle.StyleInlineTool, } ```
I don't think there isn't any yet but if you want you can achieve this using `tagNameProcessors` ```javascript const parser = new xml2js.Parser({ tagNameProcessors: [(tag) => `${prefix}:${tag}`], }); await parser.parseStringPromise(xmlString);...
 
@MattMsh I tried to use `safeParse` ```ts export const insertUserSchema = createInsertSchema(users, { email: (schema) => schema.email.email(), }); const { success, data, error } = insertUserSchema.safeParse(body); ``` Facing weird issues....
TSOA won't work as application focus on custom middlewares, and there is no support for them with TSOA