import '@styles/globals.scss'; import * as NextImage from 'next/image'; import { IntlProvider } from 'react-intl'; const OriginalNextImage = NextImage.default; Object.defineProperty(NextImage, 'default', { configurable: true, value: (props) => typeof props.src === 'string' ? ( ) : ( ), }); Object.defineProperty(NextImage, '__esModule', { configurable: true, value: true, }); export const parameters = { actions: { argTypesRegex: '^on[A-Z].*' }, controls: { matchers: { color: /(background|color)$/i, date: /Date$/, }, }, }; export const decorators = [ (Story) => ( ), ];