Skip to content

Commit

Permalink
feat(app): add fetching an innovation and commenting
Browse files Browse the repository at this point in the history
  • Loading branch information
Javan-Odhiambo committed May 21, 2024
1 parent 6e2e03b commit 103f8ca
Show file tree
Hide file tree
Showing 2 changed files with 194 additions and 178 deletions.
13 changes: 12 additions & 1 deletion next.config.mjs
Original file line number Diff line number Diff line change
@@ -1,4 +1,15 @@
/** @type {import('next').NextConfig} */
const nextConfig = {};
const nextConfig = {
images: {
remotePatterns: [
{
protocol: 'http',
hostname: 'localhost',
port: '8000',
pathname: '/media/**',
},
],
},
};

export default nextConfig;
Loading

0 comments on commit 103f8ca

Please sign in to comment.