summaryrefslogtreecommitdiff
path: root/webpack/module/rules/stylus.ts
blob: dd1e4c32180d4c16998f7478a0781845c2877e46 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/**
 * Stylus support
 */

export default () => ({
	test: /\.styl$/,
	exclude: /node_modules/,
	use: [
		{ loader: 'style-loader' },
		{ loader: 'css-loader' },
		{ loader: 'stylus-loader' }
	]
});