React configuration px conversion rem method

React configuration px conversion rem method

Install related dependencies

npm i lib-flexible --save
npm i postcss-px2rem --save

Mainly used to expose project configuration

npm run eject
! If you run npm run eject and get an error, the error may be caused by the code in the repository not being submitted. Submit it as follows
git add .
git commit -m 'custom name'
npm run eject

Then open the project config->webpack.config.js for configuration

// Add the following two lines of code to the configuration file
// px2rem({ remUnit: 75 }) means 1rem = 75px. This is based on the 750px design draft. If it is 620, write 62

const px2rem = require('postcss-px2rem');
px2rem({ remUnit: 75 })

Set according to the design size, such as: 108 = 1080px/10

Import lib-flexible: Import the lib-flexible file into the entry file index.js

import 'lib-flexible'

Comment out the following code in the public->index.html file

Restart the project after configuration is complete

This is the end of this article about how to configure react to convert px to rem. For more information about how to configure react to convert px to rem, please search 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:
  • Detailed explanation of react inline style using webpack to convert px to rem
  • React Koa Rematch How to build a server-side rendering framework
  • Application of rem layout in react in JavaScript

<<:  MySql5.7.21 installation points record notes

>>:  Two ways to create SSH server aliases in Linux

Recommend

How to restore a database and a table from a MySQL full database backup

In the official MySQL dump tool, how can I restor...

Detailed tutorial on using cmake to compile and install mysql under linux

1. Install cmake 1. Unzip the cmake compressed pa...

Detailed explanation of MySQL user rights management

Table of contents Preface: 1. Introduction to Use...

Should nullable fields in MySQL be set to NULL or NOT NULL?

People who often use MySQL may encounter the foll...

How to store images in MySQL

1 Introduction When designing a database, it is i...

Solution to the error problem of Vscode remotely connecting to Ubuntu

1. Background of the incident: Because of work ne...

CocosCreator classic entry project flappybird

Table of contents Development Environment Game en...

Troubleshooting ideas and solutions for high CPU usage in Linux systems

Preface As Linux operation and maintenance engine...

Solution to prevent caching in pages

Solution: Add the following code in <head>: ...

Solve the 1251 error when establishing a connection between mysql and navicat

I reinstalled the computer and installed the late...

Detailed explanation of Nginx reverse proxy example

1. Reverse proxy example 1 1. Achieve the effect ...

MySQL stored functions detailed introduction

Table of contents 1. Create a stored function 2. ...