Files
lct2025-lonolith/Frontend/next.config.js
Nikolai Papin 90abe15a8f feat: compose;
feat: frontend added
2025-10-02 22:17:38 +03:00

13 lines
218 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
eslint: {
ignoreDuringBuilds: true,
},
images: {
unoptimized: true,
domains: ['images.pexels.com'],
},
};
module.exports = nextConfig;