add avatar

This commit is contained in:
Lee
2023-07-02 12:02:11 +01:00
parent 4e0c74f9f0
commit 0a85026b71
3 changed files with 26 additions and 3 deletions

View File

@ -1,4 +1,15 @@
/** @type {import('next').NextConfig} */
const nextConfig = {}
const nextConfig = {
images: {
remotePatterns: [
{
protocol: "https",
hostname: "**",
port: "",
pathname: "/**",
},
],
},
};
module.exports = nextConfig
module.exports = nextConfig;