Skip to content

Commit

Permalink
fix: add index.css to package.json exports
Browse files Browse the repository at this point in the history
  • Loading branch information
cyntler committed Jun 7, 2024
1 parent 8a2b9e6 commit 3f57e1b
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,13 @@
"module": "./dist/react-doc-viewer.js",
"exports": {
".": {
"require": "./dist/react-doc-viewer.cjs",
"import": "./dist/react-doc-viewer.js",
"require": "./dist/react-doc-viewer.cjs",
"types": "./dist/index.d.ts"
},
"./dist/index.css": {
"import": "./dist/index.css",
"require": "./dist/index.css"
}
},
"scripts": {
Expand Down

0 comments on commit 3f57e1b

Please sign in to comment.