How to introduce scss into react project

How to introduce scss into react project

First download the dependencies

yarn add sass-loader node-sass

Then in the project path

node_modules/react-scripts/config/webpack.config.js

Open the file and find

insert image description here

Add the code in red line

  {
              test:/\.scss$/,
              loaders: ['style-loader', 'css-loader', 'sass-loader']
            },

You can use scss

Knowledge point expansion:

React pwa configuration

Add the plugin to the webpack configuration file

const WorkboxWebpackPlugin = require('workbox-webpack-plugin')
plugins: [
        new MiniCssExtractPlugin({
            filename: '[name].css'
        }),
        new WorkboxWebpackPlugin.GenerateSW({
            clientsClaim:true,
            skipWaiting:true
        })
    ],

This is the end of this article about how to introduce scss into react projects. For more relevant content about introducing scss into react projects, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • React introduces antd-mobile+postcss to build mobile terminal
  • What are the ways to introduce CSS in React and what are the differences?

<<:  Summary of methods for creating, listing, and deleting Docker containers on Linux

>>:  Tutorial on installing and configuring remote login to MySQL under Ubuntu

Recommend

How to deploy MySQL and Redis services using Docker

Table of contents How to deploy MySQL service usi...

Use xshell to connect to the Linux server

Benefits of using xshell to connect to Linux We c...

How to redirect PC address to mobile address in Vue

Requirements: The PC side and the mobile side are...

Detailed explanation of commands to view linux files

How to view linux files Command to view file cont...

DockerToolBox file mounting implementation code

When using docker, you may find that the file can...

How to add fields and comments to a table in sql

1. Add fields: alter table table name ADD field n...

How to get the current time using time(NULL) function and localtime() in Linux

time(); function Function prototype: time_t time(...

Detailed explanation of react setState

Table of contents Is setState synchronous or asyn...

mysql8 Common Table Expression CTE usage example analysis

This article uses an example to describe how to u...

Vue template compilation details

Table of contents 1. parse 1.1 Rules for intercep...

About vue component switching, dynamic components, component caching

Table of contents 1. Component switching method M...

Common repair methods for MySQL master-slave replication disconnection

Table of contents 01 Problem Description 02 Solut...

Implementation of navigation bar and drop-down menu in CSS

1. CSS Navigation Bar (1) Function of the navigat...