Skip to content

Commit bc041eb

Browse files
authored
Merge branch 'CodeChefVIT:staging' into staging
2 parents 4e26d30 + 9d5e0d3 commit bc041eb

30 files changed

Lines changed: 12851 additions & 717 deletions

.env.example

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ GOOGLE_CLOUD_BUCKET="" # Your Google Cloud Storage Bucket n
2323
GOOGLE_APPLICATION_CREDENTIALS_JSON="" # The content of the JSON file you download when creating a service account key
2424

2525
# Vercel KV
26-
KV_URL="" # The URL of your Vercel KV instance
27-
KV_REST_API_URL="" # The REST API URL of your Vercel KV instance
28-
KV_REST_API_TOKEN="" # The REST API token for your Vercel KV instance
29-
KV_REST_API_READ_ONLY_TOKEN="" # The read-only REST API token for your Vercel KV instance
26+
# KV_URL="" # The URL of your Vercel KV instance
27+
# KV_REST_API_URL="" # The REST API URL of your Vercel KV instance
28+
# KV_REST_API_TOKEN="" # The REST API token for your Vercel KV instance
29+
# KV_REST_API_READ_ONLY_TOKEN="" # The read-only REST API token for your Vercel KV instance
3030

3131
# Upstash_Redis
3232
UPSTASH_REDIS_REST_URL="" # REST URL of your Upstash Redis database

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ yarn-error.log*
3434
# local env files
3535
# do not commit any .env files to git, except for the .env.example file. https://create.t3.gg/en/usage/env-variables#using-environment-variables
3636
.env
37-
.env.lcal
37+
.env.local
3838
.env*.local
3939
.env.prod
4040
# vercel

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ Our top maintainers, making sure the database of papers is maintained and upto-d
106106
<img src="https://github.com/AqViolet.png?size=200" width="140" height="140" alt="~Heet avatar" />
107107
</a>
108108
<br />
109-
<b>Heet Jatnia</b>
109+
<b>Heet Jatania</b>
110110
<br />
111111
<a href="https://github.com/AqViolet" title="GitHub: AqViolet">
112112
<img src="http://www.iconninja.com/files/241/825/211/round-collaboration-social-github-code-circle-network-icon.svg" width="24" height="24" alt="GitHub icon" />

next.config.js

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,12 @@ await import("./src/env.js");
88
const config = {
99
swcMinify: false,
1010
images: {
11-
domains: ["storage.googleapis.com"],
11+
remotePatterns: [
12+
{
13+
protocol: "https",
14+
hostname: "storage.googleapis.com",
15+
},
16+
],
1217
},
1318
async headers() {
1419
return [

0 commit comments

Comments
 (0)