mirror of
https://github.com/Dokploy/website.git
synced 2026-06-19 22:25:24 +02:00
- Standardized import statements across various components to use double quotes for consistency. - Updated component files to ensure proper formatting and adherence to coding standards. - Enhanced overall code readability by aligning code structure and improving comment clarity. - Made minor adjustments to ensure all components follow the same coding conventions, improving maintainability.
23 lines
396 B
JavaScript
23 lines
396 B
JavaScript
// Internationalization removed
|
|
|
|
/** @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 = nextConfig;
|