Skip to content

Commit

Permalink
Add user authentication functionality
Browse files Browse the repository at this point in the history
  • Loading branch information
udohjeremiah committed Nov 20, 2023
1 parent 5f95912 commit e0d5839
Show file tree
Hide file tree
Showing 40 changed files with 7,807 additions and 390 deletions.
15 changes: 14 additions & 1 deletion next.config.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,17 @@
/** @type {import('next').NextConfig} */
const nextConfig = {};
const nextConfig = {
images: {
remotePatterns: [
{
protocol: "https",
hostname: "avatars.githubusercontent.com",
},
{
protocol: "https",
hostname: "lh3.googleusercontent.com",
},
],
},
};

module.exports = nextConfig;
Loading

0 comments on commit e0d5839

Please sign in to comment.