Skip to content

Commit

Permalink
disable all kinds of minification
Browse files Browse the repository at this point in the history
  • Loading branch information
phryneas committed Apr 16, 2024
1 parent 1548891 commit 8591ba7
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions integration-test/nextjs/next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,12 @@ module.exports = {
);
}

// Disable minification for debugging purposes
config.optimization.minimize = false;
return config;
},
swcMinify: false,
experimental: {
serverMinification: false,
},
};

0 comments on commit 8591ba7

Please sign in to comment.