Skip to content

Commit

Permalink
style: next.config.js prettier 적용
Browse files Browse the repository at this point in the history
  • Loading branch information
asdf99245 committed Jul 23, 2023
1 parent fcb2af4 commit bdf3d4a
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@ const nextConfig = {
config.module.rules.push({
test: /\.svg$/i,
issuer: /\.[jt]sx?$/,
use: ["@svgr/webpack"]
use: ['@svgr/webpack'],
});
return config;
},
images: {
imageSizes:[16, 32, 48],
deviceSizes: [640, 750, 828,]
}
}
imageSizes: [16, 32, 48],
deviceSizes: [640, 750, 828],
},
};

module.exports = nextConfig
module.exports = nextConfig;

0 comments on commit bdf3d4a

Please sign in to comment.