Skip to content

Commit

Permalink
fix(remix): add esm export for node
Browse files Browse the repository at this point in the history
  • Loading branch information
topaxi authored and onurtemizkan committed Jun 27, 2024
1 parent 7cc5b4e commit cf3de9f
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion packages/remix/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,10 @@
"import": "./build/esm/index.client.js",
"require": "./build/cjs/index.client.js"
},
"node": "./build/cjs/index.server.js"
"node": {
"import": "./build/esm/index.server.js",
"require": "./build/cjs/index.server.js"
}
},
"./import": {
"import": {
Expand Down

0 comments on commit cf3de9f

Please sign in to comment.