matt HOFFNER commited on
Commit
82bebab
β€’
1 Parent(s): 9c8f715
Files changed (2) hide show
  1. .gitignore +38 -2
  2. next.config.js +1 -1
.gitignore CHANGED
@@ -1,2 +1,38 @@
1
- node_modules/
2
- .next/
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2
+
3
+ # dependencies
4
+ /node_modules
5
+ /.pnp
6
+ .pnp.js
7
+
8
+ # testing
9
+ /coverage
10
+
11
+ # next.js
12
+ /.next/
13
+ /out/
14
+
15
+ # production
16
+ /build
17
+
18
+ # misc
19
+ .DS_Store
20
+ *.pem
21
+
22
+ # debug
23
+ npm-debug.log*
24
+ yarn-debug.log*
25
+ yarn-error.log*
26
+
27
+ # local env files
28
+ .env*.local
29
+
30
+ # vercel
31
+ .vercel
32
+
33
+ # typescript
34
+ *.tsbuildinfo
35
+ next-env.d.ts
36
+
37
+ # Docker secrets used for local dev
38
+ .secrets
next.config.js CHANGED
@@ -3,7 +3,7 @@ const nextConfig = {
3
  experimental: {
4
  appDir: true,
5
  },
6
- standalone: true,
7
  images: {
8
  domains: ["upload.wikimedia.org"],
9
  },
 
3
  experimental: {
4
  appDir: true,
5
  },
6
+ output: "standalone",
7
  images: {
8
  domains: ["upload.wikimedia.org"],
9
  },