Skip to content

Commit

Permalink
enable astroturf altLoader
Browse files Browse the repository at this point in the history
See astroturfcss/astroturf#705 (comment)
The altLoader is a (temporary/beta?) workaround for webpack 5 support until it is finished.
  • Loading branch information
Mitsunee committed Jun 1, 2021
1 parent 2ef1567 commit 60d3f65
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,14 @@ module.exports = () => ({
webpack: config => {
config.module.rules.push({
test: /\.js$/,
use: ["astroturf/loader"]
use: [
{
loader: "astroturf/loader",
options: {
useAltLoader: true
}
}
]
});

return config;
Expand Down

0 comments on commit 60d3f65

Please sign in to comment.