Skip to content

Commit

Permalink
Merge pull request #35 from khushal87/khushal87-dev
Browse files Browse the repository at this point in the history
[Core] Fix storybook configuration
  • Loading branch information
rtivital authored May 6, 2021
2 parents 449a76b + 8dd77dc commit 99aef24
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion configuration/storybook/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ const path = require('path');
const TsconfigPathsPlugin = require('tsconfig-paths-webpack-plugin');

module.exports = {
stories: [path.join(__dirname, '../../src/**/*.story.@(ts|tsx)')],
stories: [path.resolve(__dirname, '../../src/**/*.story.@(ts|tsx)').replace(/\\/g, '/')],
addons: ['@storybook/addon-essentials'],
webpackFinal: async (config) => {
config.resolve = {
Expand Down

0 comments on commit 99aef24

Please sign in to comment.