mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-04 14:04:39 +00:00
2e112e2406
* Add semi to ESLint rules * Add padded-blocks to ESLint rules * Add comma-dangle to ESLint rules * add config/webpack and storyboard * add streaming/ * yarn test:lint -- --fix
15 lines
388 B
JavaScript
15 lines
388 B
JavaScript
const ExtractTextPlugin = require('extract-text-webpack-plugin');
|
|
const { env } = require('../configuration.js');
|
|
|
|
module.exports = {
|
|
test: /\.(scss|sass|css)$/i,
|
|
use: ExtractTextPlugin.extract({
|
|
fallback: 'style-loader',
|
|
use: [
|
|
{ loader: 'css-loader', options: { minimize: env.NODE_ENV === 'production' } },
|
|
'postcss-loader',
|
|
'sass-loader',
|
|
],
|
|
}),
|
|
};
|