mirror of
https://github.com/lucasrcsantana/story-generator.git
synced 2025-12-17 05:47:52 +00:00
- Adiciona componente Footer reutiliz��vel para todas as Landing Pages - Cria componentes PlanForParents e PlanForSchools - Implementa os novos componentes nas p��ginas existentes - Melhora a organiza����o e reutiliza����o de c��digo - Atualiza CHANGELOG.md com as altera����es
19 lines
404 B
JavaScript
19 lines
404 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
output: 'standalone',
|
|
images: {
|
|
domains: [
|
|
'oaidalleapiprodscus.blob.core.windows.net',
|
|
'historiasmagicas.netlify.app',
|
|
'localhost',
|
|
],
|
|
formats: ['image/avif', 'image/webp'],
|
|
minimumCacheTTL: 60,
|
|
},
|
|
experimental: {
|
|
optimizeCss: true,
|
|
optimizeImages: true,
|
|
},
|
|
}
|
|
|
|
module.exports = nextConfig
|