skip to Main Content

Html – Image won't load in webpack build

slider.js ... const initialize = (pImages) => { pImages.forEach((image) => { const sliderItem = document.createElement("img"); sliderItem.src = image.src; // this line result in 404 not found in dev tool ... }) } ... index.js ... initialize( { src: "image relative…

VIEW QUESTION

Reactjs – Storybook for react cant see my components

When I run my storybook sometimes my components are missing. So I have "... New folderworkingtestwithpawelsrccomponentsAi4Process_mylib_test2demo.stories.tsx" But storybook won't see the file Here is my .storybook/main.js which defines where to look for stories. /** @type { import('@storybook/react-webpack5').StorybookConfig } */ const…

VIEW QUESTION
Back To Top
Search