Refactoring
This commit is contained in:
parent
e237c53766
commit
fb70e3b176
12 changed files with 202 additions and 121 deletions
13
webpack/module/rules/stylus.ts
Normal file
13
webpack/module/rules/stylus.ts
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
/**
|
||||
* Stylus support
|
||||
*/
|
||||
|
||||
export default () => ({
|
||||
test: /\.styl$/,
|
||||
exclude: /node_modules/,
|
||||
use: [
|
||||
{ loader: 'style-loader' },
|
||||
{ loader: 'css-loader' },
|
||||
{ loader: 'stylus-loader' }
|
||||
]
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue