Static Nextjs Site Hits 5.9 Million Edge Function Invocations in 7 days

Seekig Help. How does a static nextjs site use edge functions. My site is deployed to netlify and I have their netlify/next package turned off during build but i also deployed it to vercel and the same outcome. I am getting edge function requests going. next.config.js
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
output: 'export',
distDir: 'out',
images: {
domains: ['domain.com', 'assets-*.s3.eu-west-3.amazonaws.com/']
}
}

module.exports = nextConfig
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
output: 'export',
distDir: 'out',
images: {
domains: ['domain.com', 'assets-*.s3.eu-west-3.amazonaws.com/']
}
}

module.exports = nextConfig
what should I do in my case?
0 Replies
No replies yetBe the first to reply to this messageJoin

Did you find this page helpful?