Skip to content

Commit 27b4c80

Browse files
authored
⬆️ - Update nextjs dependencies to 14.2 (#32)
2 parents 3f1c4c9 + 4c27022 commit 27b4c80

File tree

3 files changed

+2153
-702
lines changed

3 files changed

+2153
-702
lines changed

next.config.js

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,18 @@
11
const { withContentlayer } = require('next-contentlayer')
22

33
/** @type {import('next').NextConfig} */
4-
const nextConfig = { reactStrictMode: true, swcMinify: true }
4+
const nextConfig = {
5+
reactStrictMode: true,
6+
swcMinify: true ,
7+
experimental: {
8+
turbo: {
9+
rules: {
10+
'*.svg': {
11+
loaders: ['@svgr/webpack'],
12+
as: '*.js',
13+
},
14+
},
15+
},
16+
},}
517

618
module.exports = withContentlayer(nextConfig)

0 commit comments

Comments
 (0)