added tons of features

This commit is contained in:
2025-02-05 08:01:14 +02:00
parent 4ae0d8c545
commit 8138da6b1d
195 changed files with 12619 additions and 415 deletions

View File

@@ -1,7 +1,35 @@
import type { NextConfig } from "next";
import type {NextConfig} from 'next'
import createNextIntlPlugin from 'next-intl/plugin'
const withNextIntl = createNextIntlPlugin({
experimental: {
createMessagesDeclaration: './messages/uk.json'
}
})
const nextConfig: NextConfig = {
/* config options here */
};
experimental: {
authInterrupts: true
// serverActions: {
// bodySizeLimit: '20mb'
// }
// // staleTimes: {
// dynamic: 30,
// static: 180
// }
},
export default nextConfig;
images: {
formats: ['image/avif', 'image/webp'],
dangerouslyAllowSVG: true,
//unoptimized: true,
remotePatterns: [
{
protocol: 'https',
hostname: '*'
}
]
}
}
export default withNextIntl(nextConfig)