mirror of
https://github.com/lucasrcsantana/story-generator.git
synced 2025-12-16 21:37:51 +00:00
19 lines
388 B
JavaScript
19 lines
388 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
output: 'standalone',
|
|
images: {
|
|
domains: [
|
|
'oaidalleapiprodscus.blob.core.windows.net',
|
|
'leiturama.ai',
|
|
'localhost',
|
|
],
|
|
formats: ['image/avif', 'image/webp'],
|
|
minimumCacheTTL: 60,
|
|
},
|
|
experimental: {
|
|
optimizeCss: true,
|
|
optimizeImages: true,
|
|
},
|
|
}
|
|
|
|
module.exports = nextConfig
|