Files

15 lines
218 B
JavaScript
Raw Permalink Normal View History

2023-09-11 00:40:14 -05:00
const { hostname } = require('os');
2023-09-09 17:02:12 -05:00
2023-09-11 00:40:14 -05:00
/** @type {import('next').NextConfig} */
const nextConfig = {
images: {
remotePatterns: [
{
hostname: '*',
},
],
},
};
module.exports = nextConfig;