Gitiles
Code Review
Sign In
git.clicks.codes
/
Clicks
/
clicks.codes
/
d57ffa70803e4b05db1ba880992646a57c1563cd
/
.
/
next.config.js
blob: 6722b642d2df48f5787a3d046a4263a3fa66fa9a [
file
] [
log
] [
blame
]
module
.
exports
=
{
reactStrictMode
:
true
,
webpack
(
config
)
{
config
.
module
.
rules
.
push
({
test
:
/\.svg$/
,
use
:
[
{
loader
:
"@svgr/webpack"
,
options
:
{
svgo
:
false
,
// Optimization caused bugs with some of my SVGs
},
},
],
});
return
config
;
},
}