12345678910111213141516171819 |
- import createNextIntlPlugin from 'next-intl/plugin'
- const withNextIntl = createNextIntlPlugin('./i18n.ts')
- /** @type {import('next').NextConfig} */
- const nextConfig = {
- eslint: {
- ignoreDuringBuilds: true,
- },
- typescript: {
- ignoreBuildErrors: true,
- },
- images: {
- domains: ['placeholder.svg'],
- unoptimized: true,
- },
- }
- export default withNextIntl(nextConfig)
|