fosrl.pangolin/next.config.mjs

14 lines
286 B
JavaScript
Raw Normal View History

2025-04-18 20:46:21 +02:00
import createNextIntlPlugin from 'next-intl/plugin';
2025-04-18 20:24:14 +02:00
const withNextIntl = createNextIntlPlugin();
2024-09-27 19:48:49 -04:00
/** @type {import('next').NextConfig} */
const nextConfig = {
eslint: {
2025-04-18 20:24:14 +02:00
ignoreDuringBuilds: true
2025-03-08 18:11:39 -05:00
},
2025-04-18 20:24:14 +02:00
output: 'standalone'
};
2024-09-27 19:48:49 -04:00
2025-04-18 20:24:14 +02:00
export default withNextIntl(nextConfig);