-
Notifications
You must be signed in to change notification settings - Fork 1
Implement comprehensive community platform with 18+ new pages and features #12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
31e1f73
e09826e
dbc4269
b446c51
6a89ac4
f5664dc
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -3,5 +3,9 @@ import type { NextConfig } from "next"; | |
| const nextConfig: NextConfig = { | ||
| /* config options here */ | ||
| }; | ||
|
|
||
| module.exports = { | ||
| images: { | ||
| remotePatterns: [new URL("https://github.com/CodeStorm-Hub.png")], | ||
| }, | ||
| }; | ||
|
Comment on lines
5
to
+10
|
||
| export default nextConfig; | ||
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The
remotePatternsconfiguration is incorrect. It should be an array of objects withprotocol,hostname, andpathnameproperties, not a URL object. This will cause runtime errors when trying to load remote images.