//const TsconfigPathsPlugin = require('tsconfig-paths-webpack-plugin'); module.exports = { /* webpackFinal: async (config) => { config.resolve.plugins = [ ...(config.resolve.plugins || []), new TsconfigPathsPlugin({ extensions: config.resolve.extensions, }), ]; return config; },*/ "stories": [ "../src/**/*.stories.mdx", "../src/**/*.stories.@(js|jsx|ts|tsx)" ], "addons": [ "@storybook/addon-links", "@storybook/addon-essentials", "@storybook/preset-create-react-app" ], "framework": "@storybook/react", "core": { "builder": "webpack5" } }