Skip to content

Commit 6fc0235

Browse files
authored
Merge pull request #1 from codersforcauses/main
code runs as should
2 parents 59643b7 + edfb0cd commit 6fc0235

157 files changed

Lines changed: 12192 additions & 109 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# local development data
22
data/
3+
server/media/
34

45
# Byte-compiled / optimized / DLL files
56
__pycache__/

.vscode/settings.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,8 @@
99
"typescript.tsdk": "${workspaceFolder}/client/node_modules/typescript/lib",
1010
"shellcheck.ignorePatterns": {
1111
"**/.env*": true
12+
},
13+
"[typescriptreact]": {
14+
"editor.defaultFormatter": "vscode.typescript-language-features"
1215
}
1316
}

client/next.config.mjs

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,17 @@ const nextConfig = {
1717
return config;
1818
}
1919
: undefined,
20+
21+
images: {
22+
remotePatterns: [
23+
{
24+
protocol: "http",
25+
hostname: "localhost",
26+
port: "8000",
27+
pathname: "/media/**",
28+
},
29+
],
30+
},
2031
};
2132

2233
export default nextConfig;

0 commit comments

Comments
 (0)