-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #374 from ymj0828/part3-유미정-week12
[유미정] Week12
- Loading branch information
Showing
86 changed files
with
5,314 additions
and
530 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,23 @@ | ||
/** @type {import('next').NextConfig} */ | ||
const nextConfig = { | ||
reactStrictMode: true, | ||
} | ||
webpack: (config) => { | ||
config.module.rules.push({ | ||
test: /\.svg$/i, | ||
issuer: /\.[jt]sx?$/, | ||
use: ["@svgr/webpack"], | ||
}); | ||
|
||
module.exports = nextConfig | ||
return config; | ||
}, | ||
}; | ||
|
||
module.exports = { | ||
...nextConfig, | ||
images: { | ||
domains: [ | ||
"codeit-front.s3.ap-northeast-2.amazonaws.com", | ||
"codeit-images.codeit.com", | ||
], | ||
} | ||
}; |
Oops, something went wrong.