mirror of
https://github.com/outbackdingo/pangolin.git
synced 2026-01-27 10:20:03 +00:00
14 lines
286 B
JavaScript
14 lines
286 B
JavaScript
import createNextIntlPlugin from 'next-intl/plugin';
|
|
|
|
const withNextIntl = createNextIntlPlugin();
|
|
|
|
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
eslint: {
|
|
ignoreDuringBuilds: true
|
|
},
|
|
output: 'standalone'
|
|
};
|
|
|
|
export default withNextIntl(nextConfig);
|