Skip to content

Commit c0b9744

Browse files
authored
Merge pull request #1074 from bokeeeey/part4-김보경-week20
[김보경] week20
2 parents 350c8a0 + 170b2a7 commit c0b9744

Some content is hidden

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

81 files changed

+3226
-150
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ yarn-error.log*
2727

2828
# local env files
2929
.env*.local
30+
.env
3031

3132
# vercel
3233
.vercel

next.config.js

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
/** @type {import('next').NextConfig} */
2+
const nextConfig = {
3+
reactStrictMode: true,
4+
images: {
5+
formats: ["image/webp", "image/avif"],
6+
remotePatterns: [
7+
{
8+
protocol: "https",
9+
hostname: "**",
10+
port: "",
11+
},
12+
],
13+
},
14+
};
15+
16+
module.exports = nextConfig;

0 commit comments

Comments
 (0)