mirror of
https://github.com/paricafe/misskey.git
synced 2024-11-25 08:26:43 -06:00
13 lines
198 B
TypeScript
13 lines
198 B
TypeScript
/**
|
|
* Stylus support
|
|
*/
|
|
|
|
export default () => ({
|
|
test: /\.styl$/,
|
|
exclude: /node_modules/,
|
|
use: [
|
|
{ loader: 'style-loader' },
|
|
{ loader: 'css-loader' },
|
|
{ loader: 'stylus-loader' }
|
|
]
|
|
});
|