Skip to content

Commit

Permalink
Website, next.js instructions
Browse files Browse the repository at this point in the history
Fixed next.config.js example to a working version per this:
#860 (comment)
  • Loading branch information
Jari Mustonen committed Aug 24, 2023
1 parent 772592e commit c6b3833
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion website/pages/docs/next.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ module.exports = {
{
test: /\.svg$/i,
issuer: /\.[jt]sx?$/,
resourceQuery: { not: /url/ }, // exclude if *.svg?url
resourceQuery: { not: [...fileLoaderRule.resourceQuery.not, /url/] }, // exclude if *.svg?url
use: ['@svgr/webpack'],
},
)
Expand Down

0 comments on commit c6b3833

Please sign in to comment.