Files
conve-x/next.config.js
T

15 lines
218 B
JavaScript

const { hostname } = require('os');
/** @type {import('next').NextConfig} */
const nextConfig = {
images: {
remotePatterns: [
{
hostname: '*',
},
],
},
};
module.exports = nextConfig;