story-generator/next.config.js
Lucas Santana 198cad0047
Some checks are pending
Docker Build and Push / build (push) Waiting to run
fix: corrigindo CORS Headers
2025-01-19 10:31:52 -03:00

21 lines
460 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
output: 'standalone',
images: {
domains: [
'oaidalleapiprodscus.blob.core.windows.net',
'leiturama.ai',
'localhost',
'bsjlbnyslxzsdwxvkaap.supabase.co',
'leiturama.netlify.app'
],
formats: ['image/avif', 'image/webp'],
minimumCacheTTL: 60,
},
experimental: {
optimizeCss: true,
optimizeImages: true,
},
}
module.exports = nextConfig