故事书Webpack绝对导入

时间:2019-03-17 13:40:31

标签: javascript reactjs webpack build storybook

在我们的应用程序中,我们将绝对路径用于导入模块。我们将react文件夹放入解析根目录:

Folder structure

我们正在使用webpack来构建和开发应用程序,并且可以正常运行,并带有以下选项:

  resolve: {
    modules: [
      'node_modules',
      path.resolve('src')
    ]
  },

我正在研究故事书,并且发现它无法从此react文件夹中找到任何模块。

ERROR in ./stories/index.stories.js
Module not found: Error: Can't resolve 'react/components/Button' in 'project_name/stories'
 @ ./stories/index.stories.js

对于下一行: import Button from 'react/components/Button';

作为标记:我向.storybook / webpack配置中添加了resolve / modules,并且如果我尝试从其他内容中导入其他内容,例如services/xxx-它也可以工作。

0 个答案:

没有答案