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 committed Jun 26, 2024
1 parent 8c94548 commit 2e33537
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 @@ -33,7 +33,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 2e33537

Please sign in to comment.