mirror of
https://github.com/lucasrcsantana/story-generator.git
synced 2025-12-16 13:27:52 +00:00
21 lines
460 B
JavaScript
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
|