Spaces:
Configuration error
Configuration error
File size: 403 Bytes
7bbd534 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: false,
swcMinify: true,
basePath: process.env.NEXT_PUBLIC_BASE_PATH,
assetPrefix: process.env.NEXT_PUBLIC_BASE_PATH,
images: {
domains: [
'images.unsplash.com',
'i.ibb.co',
'scontent.fotp8-1.fna.fbcdn.net',
],
// Make ENV
unoptimized: true,
},
};
module.exports = nextConfig;
|