hlsitechbot / next.config.js
hlsitech's picture
Upload 93 files
7bbd534 verified
raw
history blame contribute delete
403 Bytes
/** @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;