Skip to content

Commit

Permalink
fix configs
Browse files Browse the repository at this point in the history
  • Loading branch information
Vitalsine85 committed Aug 7, 2023
1 parent f2ccec2 commit cd2a546
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 20 deletions.
5 changes: 1 addition & 4 deletions next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
31 changes: 15 additions & 16 deletions postcss.config.js
Original file line number Diff line number Diff line change
@@ -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,
},
},
],
],
}

}

0 comments on commit cd2a546

Please sign in to comment.