next.config.mjs 385 B

12345678910111213141516171819
  1. import createNextIntlPlugin from 'next-intl/plugin'
  2. const withNextIntl = createNextIntlPlugin('./i18n.ts')
  3. /** @type {import('next').NextConfig} */
  4. const nextConfig = {
  5. eslint: {
  6. ignoreDuringBuilds: true,
  7. },
  8. typescript: {
  9. ignoreBuildErrors: true,
  10. },
  11. images: {
  12. domains: ['placeholder.svg'],
  13. unoptimized: true,
  14. },
  15. }
  16. export default withNextIntl(nextConfig)