mirror of
https://github.com/Dokploy/website
synced 2025-06-26 18:16:01 +00: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);
|