You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

webpack.config.js 364B

1234567891011121314151617
  1. module.exports = {
  2. module: {
  3. rules: [
  4. {
  5. test: /\.s[ac]ss$/i,
  6. use: [
  7. // Creates `style` nodes from JS strings
  8. "style-loader",
  9. // Translates CSS into CommonJS
  10. "css-loader",
  11. // Compiles Sass to CSS
  12. "sass-loader",
  13. ],
  14. },
  15. ],
  16. },
  17. };