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