Skip to content

Commit

Permalink
ci: disable more optimization.minimize in examples/ (#4658)
Browse files Browse the repository at this point in the history
  • Loading branch information
Boshen authored Nov 15, 2023
1 parent 91145e5 commit 1668566
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions examples/builtin-swc-loader/rspack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,9 @@ const config = {
}
]
},
optimization: {
minimize: false, // Disabling minification because it takes too long on CI
},
plugins: [
new rspack.HtmlRspackPlugin({
template: "./index.html"
Expand Down
3 changes: 3 additions & 0 deletions examples/emotion/rspack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ const config = {
entry: {
main: "./src/index.jsx"
},
optimization: {
minimize: false, // Disabling minification because it takes too long on CI
},
plugins: [
new rspack.HtmlRspackPlugin({
template: "./index.html"
Expand Down

0 comments on commit 1668566

Please sign in to comment.