Closed
Description
As webpack.config is not accessible, I'm having an obvious issue with my *.styl files:
Module parse failed: *.styl Unexpected character '@' (1:0)
You may need an appropriate loader to handle this file type.
I need to include the following syntax in my webpack.config file:
module: {
loaders: [
{
test: /\.styl$/,
include: path.join(__dirname, 'src'),
loader: 'style-loader!css-loader!stylus-loader'
}
]
}
How do I resolve this issue?
Metadata
Metadata
Assignees
Labels
No labels