Home
1 min read
Ciao 🇮🇹 Se vuoi supportare il mio lavoro su YouTube e sul Podcast e ottenere dei contenuti fantastici esclusivi per migliorare il tuo italiano, sei sulla pagina giusta. Puoi anche farmi una semplice donazione per supportare i costi dei miei viaggi in Italia! Un abbraccio!
⚠ The config property experimental.turbo
is deprecated. Move this setting to config.turbopack
as Turbopack is now stable.
Turbopack doesn’t work if you are using webpack configs – you will want to move them to Turbopack or remove them - can you share you config?
import type { NextConfig } from 'next';
const nextConfig: NextConfig = {
sassOptions: {
silenceDeprecations: ['legacy-js-api'],
},
experimental: {
turbo: {
useSwcCss: true,
rules: {
'*.comp.svg': {
loaders: ['@svgr/webpack'],
as: 'component',
},
'/.(glsl|vs|fs|vert|frag)$/': {
loaders: ['raw-loader'],
},
},
},
},
};
export default nextConfig;