Erica Walsh
Erica Walsh
+1 same issue
@Maftalion @jbeuckm I was able to get this working by updating my .storybook/main.js file to the following: ``` const custom = require('../webpack.config.js'); module.exports = { stories: ['../src/components/**/*.stories.@(js|jsx|ts|tsx)'], addons: ['@storybook/addon-links', '@storybook/addon-essentials'],...
@Maftalion I believe you're missing `tsx` files where you define the rules in your webpack config file. Try adding it in there, like this: `test: /\.(ts|tsx)$/,`
Also encountering this issue