Gökhan Taşkan
Gökhan Taşkan
Hi antfu, Here is the repro link: https://stackblitz.com/edit/vitejs-vite-nercgp?file=auto-imports.d.ts
I have encountered a difference in the content type used by `$fetch` in Nuxt 3 (^3.12.4) compared to the native `fetch` and `ofetch` methods. Specifically, `$fetch` utilizes `application/json` with Form...
> @gokhantaskan $fetch is created with ofetch and should not differ (except perhaps in internal requests, which are powered by unenv) so I would be grateful of a reproduction and...
I've identified the issue, and it's on my end: ```ts const $api = $fetch.create({ baseURL: config.public.apiPath, credentials: "include", // Convert request body to snake_case onRequest({ options }) { if (options.body)...
(Updated) I created a plugin. ```ts export default defineNuxtPlugin({ name: "locale", hooks: { "app:created": () => { const nuxtApp = useNuxtApp(); const dayjs = nuxtApp.$dayjs; const i18n = nuxtApp.$i18n; dayjs.locale(i18n.locale.value);...
I'm new to drizzle and ORMs, but I figured out my issue (which is similar to renchris issue): - My first migration includes "CREATE TABLE `reports`" not "CREATE TABLE IF...
> Yes, the project runs properly when building with `nuxt build`, I can confirm that. I implemented the changes successfully, but I'm encountering an issue with the Netlify build. The...