The code powering m.abunchtell.com https://m.abunchtell.com
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 

23 行
435 B

  1. const MiniCssExtractPlugin = require('mini-css-extract-plugin');
  2. const { env } = require('../configuration.js');
  3. module.exports = {
  4. test: /\.s?css$/i,
  5. use: [
  6. MiniCssExtractPlugin.loader,
  7. {
  8. loader: 'css-loader',
  9. options: {
  10. minimize: env.NODE_ENV === 'production',
  11. },
  12. },
  13. {
  14. loader: 'postcss-loader',
  15. options: {
  16. sourceMap: true,
  17. },
  18. },
  19. 'sass-loader',
  20. ],
  21. };