avidrunner
Explore posts from serversHot reload refresh issue, any idea what is causing this?
I am still new to Nuxt, but I followed this guide for initial setup: https://www.youtube.com/watch?v=r3zxLMoPBAI
/nuxt.config.js file:
import tailwindcss from '@tailwindcss/vite';
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
compatibilityDate: '2024-11-01',
devtools: { enabled: true },
css: ['~/assets/css/main.css'],
vite: {
plugins: [tailwindcss()],
},
modules: [
'@nuxt/content',
'@nuxt/eslint',
'@nuxt/fonts',
'@nuxt/icon',
'@nuxt/image',
'@nuxt/scripts',
'@nuxt/test-utils',
'@nuxt/ui',
],
image: {
cloudflare: {
baseURL: 'https://images.mydomain.com',
},
},
});
/plugins/directus.js
import { createDirectus, rest, readItem, readItems } from '@directus/sdk';
const directus = createDirectus('https://api.mydomain.com').with(rest());
export default defineNuxtPlugin(() => {
return {
provide: {
directus,
readItem,
readItems,
},
};
});
5 replies
CDCloudflare Developers
•Created by avidrunner on 10/6/2024 in #general-help
nodejs_compat Compatibility Flag for Nextjs (Cloudflare Pages)
I can deploy my Nextjs website onto Vercel and Netlify directly from Github repo, one click no issues.
But for some reason on Cloudflare Pages I get an error telling me I need to manually add "nodejs_compat" flag to production and build.
Is there any reason for this? And is the Cloudflare team working on resolving this, or it will always be like this?
5 replies
CDCloudflare Developers
•Created by avidrunner on 5/16/2024 in #general-help
R2 Object Storage - 500 Error

2 replies