Skip to content

Commit

Permalink
fix process error
Browse files Browse the repository at this point in the history
  • Loading branch information
krmanik committed Feb 11, 2024
1 parent 786b38c commit 0709283
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,6 @@
]
},
"engines": {
"node": ">=16.14"
"node": ">=18.16"
}
}
9 changes: 8 additions & 1 deletion plugins/custom-docusaurus-plugin/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,14 @@ module.exports = function (context, options) {
configureWebpack(config, isServer, utils) {
return {
module: {
rules: [],
rules: [
{
test: /\.m?js/,
resolve: {
fullySpecified: false
}
}
],
},
resolve: {
alias: {
Expand Down

0 comments on commit 0709283

Please sign in to comment.