mirror of
https://github.com/cssgunc/compass.git
synced 2025-05-10 10:39:49 -04:00
13 lines
223 B
JavaScript
13 lines
223 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
images: {
|
|
remotePatterns: [
|
|
{
|
|
hostname: "notioly.com",
|
|
},
|
|
],
|
|
},
|
|
};
|
|
|
|
module.exports = nextConfig;
|