From 321dae4a47594af83269fa560b375965d7f35763 Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Sun, 22 May 2022 15:09:39 +0200 Subject: fix: render all images unoptimized in Storybook There is a bug with next/image and Storybook. I was manually adding `unoptimized` to images. Instead we can use a workaround by adding an extra config in Storybook `preview.js` file. --- src/components/molecules/images/flipping-logo.stories.tsx | 3 --- 1 file changed, 3 deletions(-) (limited to 'src/components/molecules/images/flipping-logo.stories.tsx') diff --git a/src/components/molecules/images/flipping-logo.stories.tsx b/src/components/molecules/images/flipping-logo.stories.tsx index 40a4c49..9d09293 100644 --- a/src/components/molecules/images/flipping-logo.stories.tsx +++ b/src/components/molecules/images/flipping-logo.stories.tsx @@ -54,7 +54,6 @@ export default { required: true, }, }, - unoptimized: { table: { disable: true } }, }, } as ComponentMeta; @@ -70,6 +69,4 @@ FlippingLogo.args = { altText: 'Website picture', logoTitle: 'Website logo', photo: 'http://placeimg.com/640/480', - // @ts-ignore - Needed because of the placeholder image. - unoptimized: true, }; -- cgit v1.2.3