mirror of
https://github.com/Dokploy/website
synced 2025-06-26 18:16:01 +00:00
25 lines
482 B
JavaScript
25 lines
482 B
JavaScript
const createNextIntlPlugin = require("next-intl/plugin");
|
|
|
|
const withNextIntl = createNextIntlPlugin();
|
|
|
|
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
eslint: {
|
|
ignoreDuringBuilds: true,
|
|
},
|
|
typescript: {
|
|
ignoreBuildErrors: true,
|
|
},
|
|
images: {
|
|
domains: [
|
|
"static.ghost.org",
|
|
"testing-ghost-8423be-31-220-108-27.traefik.me",
|
|
"images.unsplash.com",
|
|
"www.gravatar.com",
|
|
"cms.dokploy.com",
|
|
],
|
|
},
|
|
};
|
|
|
|
module.exports = withNextIntl(nextConfig);
|