Skip to content

Commit

Permalink
build(storybook): fix error when running storybook with Node 18
Browse files Browse the repository at this point in the history
  • Loading branch information
remarkablemark committed Oct 28, 2023
1 parent e61f5c2 commit 4a87a02
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/storybook/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@
"description": "Storybook",
"author": "Mark <[email protected]>",
"scripts": {
"build": "build-storybook",
"build": "NODE_OPTIONS=--openssl-legacy-provider build-storybook",
"clean": "rm -rf storybook-static",
"lint": "eslint .",
"lint:fix": "yarn lint --fix",
"start": "yarn storybook",
"storybook": "start-storybook -p 6006"
"start": "NODE_OPTIONS=--openssl-legacy-provider yarn storybook",
"storybook": "NODE_OPTIONS=--openssl-legacy-provider start-storybook -p 6006"
},
"dependencies": {
"@remarkable/button": "1.0.0-alpha"
Expand Down

0 comments on commit 4a87a02

Please sign in to comment.