mirror of
https://github.com/fosrl/pangolin.git
synced 2025-06-21 04:45:41 +02:00
13 lines
286 B
JavaScript
13 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);
|