Sam Hulick

Results 191 comments of Sam Hulick

I don't think that's anything to be concerned about since the client side is using GraphQL as its query language, it's not passing SQL statements to the back-end. Also, note...

@AaronHarris Thanks! Yeah, I later realized this and decided to sanitize on the client side: ```ts export default function sanitizeSql(sql: string): string { // eslint-disable-next-line no-control-regex return sql.replace(/[\0\x08\x09\x1a\n\r"'\\%]/g, char =>...

If this helps anyone else: Lately I've just been using Lambda data sources to connect resolvers to Postgres. Using the VTL scripts is a real headache. Then I just use...

@akasection Stupid question: how did you realize you had to include `@sentry/node` in the `build.transpile` option?

@andresespinosapc I have to manually pull it in from `useNuxtApp()`, e.g.: ```ts import * as Sentry from '@sentry/serverless'; export default defineNuxtPlugin(() => { return { provide: { sentryServer: Sentry },...

@kesor Just curious, is this repo still maintained? I'd like to contribute, but only if PRs will actually get reviewed and merged.

Just ran into this as well. Vite SSR project. I've got this in App.vue: ```html ``` And in the component being rendered by the router: ```ts import { ref }...

@yyx990803 Was this ever documented anywhere?

I tested this by patching it in my project (using `yarn patch`), and it didn't fix the issue. See attached video (the background is initially green to emphasize the flash)....

This isn't stale, it's still an issue. And there's no currently proven fix that I'm aware of.