mirror of
https://github.com/Dokploy/website.git
synced 2026-06-15 20:25:25 +02:00
16 lines
303 B
JavaScript
16 lines
303 B
JavaScript
const createNextIntlPlugin = require("next-intl/plugin");
|
|
|
|
const withNextIntl = createNextIntlPlugin();
|
|
|
|
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
eslint: {
|
|
ignoreDuringBuilds: true,
|
|
},
|
|
typescript: {
|
|
ignoreBuildErrors: true,
|
|
},
|
|
};
|
|
|
|
module.exports = withNextIntl(nextConfig);
|