mirror of
https://github.com/nadimkobeissi/mkbsd.git
synced 2025-04-20 19:46:32 -04:00
15 lines
268 B
JavaScript
15 lines
268 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
images: {
|
|
remotePatterns: [
|
|
{
|
|
protocol: "https",
|
|
hostname: "panels-cdn.imgix.net",
|
|
port: "",
|
|
pathname: "/**",
|
|
},
|
|
],
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|