Files
jsdoc-cheatsheet/next.config.mjs
v0 78b6b47075 fix: resolve deployment error with dark theme configuration
Update layout file to apply dark theme and configure fonts.

Co-authored-by: Luke Hagar <5702154+LukeHagar@users.noreply.github.com>
2025-09-16 19:30:20 +00:00

15 lines
228 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
eslint: {
ignoreDuringBuilds: true,
},
typescript: {
ignoreBuildErrors: true,
},
images: {
unoptimized: true,
},
}
export default nextConfig