diff --git a/next.config.js b/next.config.js index ae41c3e7..8b2b2730 100644 --- a/next.config.js +++ b/next.config.js @@ -18,13 +18,10 @@ const nextConfig = { experimental: { newNextLinkBehavior: true, scrollRestoration: true, - images: { - allowFutureImage: true, - unoptimized: true, - }, }, images: { deviceSizes: [640, 768, 1024, 1280, 1536, 1600], + unoptimized: true, }, publicRuntimeConfig: { breakpoints: screens, diff --git a/postcss.config.js b/postcss.config.js index 696fe396..f719286a 100644 --- a/postcss.config.js +++ b/postcss.config.js @@ -1,19 +1,18 @@ module.exports = { plugins: [ - 'tailwindcss', - 'postcss-flexbugs-fixes', - [ - 'postcss-preset-env', - { - autoprefixer: { - flexbox: 'no-2009', - }, - stage: 3, - features: { - 'custom-properties': false, - }, - }, - ], + 'tailwindcss', + 'postcss-flexbugs-fixes', + [ + 'postcss-preset-env', + { + autoprefixer: { + flexbox: 'no-2009', + }, + stage: 3, + features: { + 'custom-properties': false, + }, + }, + ], ], - } - \ No newline at end of file +}