DEV Community

Discussion on: Build a Web Component library with Stencil and Storybook

Collapse
 
jborja79 profile image
jborja79

hey, great article, also with the newer version of copy-webpack-plugin is necessary patterns node in storybook config .storybook/main.js

      new CopyPlugin({
        patterns: [
          {
            from: '**/*',
            to: './',
            context: 'dist',
          }
        ],
      }),
    );```


Enter fullscreen mode Exit fullscreen mode