ok, we are nearly done

This commit is contained in:
2024-12-14 00:43:45 -05:00
parent 94e5886d70
commit 62f95b16cd
10 changed files with 187 additions and 174 deletions

View File

@@ -1,11 +1,16 @@
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
/* config options here */
/* module.exports = {
module.exports = {
images: {
remotePatterns: [
{
protocol: 'https',
hostname: 'assets.example.com',
port: '',
pathname: '/**',
search: '',
},
{
protocol: 'https',
hostname: 'images.unsplash.com',
@@ -17,10 +22,14 @@ const nextConfig: NextConfig = {
hostname: 'tailwindui.com',
port: '',
pathname: '/plus/img/logos/**',
},
{
protocol: 'http',
hostname: 'i1.avlws.com',
port: '',
pathname: '/**',
}
],
},
},*/
};
}
};
export default nextConfig;