2
我目前正面臨故事書的問題。一切都在我的應用程序,webpack工作得很好。故事書似乎有我的配置問題。與故事書導入scss文件
這裏是我的webpack.config.js:
module.exports = {
entry: './index.js',
output: {
path: path.join(__dirname, 'dist'),
filename: 'bundle.js'
},
module: {
loaders: [
{
test: /\.js$/,
loader: 'babel-loader',
exclude: /node_modules/,
include: __dirname
},
{
test: /\.scss$/,
use: [
{loader: "style-loader"},
{loader: "css-loader"},
{loader: "sass-loader",
options: {
includePaths: [__dirname]
}
}]
},
故事書有問題與解析SCSS文件,我需要創建一個特定webpack.config.js的童話故事來解決這個問題?
在我主要的應用程序,我輸入我的SCSS文件是這樣的:import './styles/base.scss'
更多信息需要回答你的問題,比如你如何將scss文件導入你的應用程序。 – thomasmeadows
感謝notyfing me that.I'll完成我的問題 – awzx
有一個關於您的用例的文檔部分https://storybook.js.org/configurations/custom-webpack-config/ –