溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

react中安裝sass的方法

發(fā)布時間:2020-11-30 11:37:08 來源:億速云 閱讀:477 作者:小新 欄目:web開發(fā)

這篇文章主要介紹了react中安裝sass的方法,具有一定借鑒價值,需要的朋友可以參考下。希望大家閱讀完這篇文章后大有收獲。下面讓小編帶著大家一起了解一下。

react中安裝sass的方法:首先安裝【sass-loader】和n【ode-sass】依賴;然后打開react的webpack配置,并進行相關修改即可。

react中安裝sass的方法:

一、安裝sass-loader和node-sass依賴

npm install sass-loader node-sass --save-dev

二、打開react的webpack配置

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

找到module下的rules,oneof數(shù)組中,然后找到最后一個配置,修改成如下的樣子

            {
              loader: require.resolve('file-loader'),
              // Exclude `js` files to keep "css" loader working as it injects
              // its runtime that would otherwise be processed through "file" loader.
              // Also exclude `html` and `json` extensions so they get processed
              // by webpacks internal loaders.
              exclude: [/\.(js|mjs|jsx|ts|tsx)$/, /\.html$/, /\.json$/],
              options: {
                name: 'static/media/[name].[hash:8].[ext]',
              },
            },
            // ** STOP ** Are you adding a new loader?
            // Make sure to add the new loader(s) before the "file" loader.
          {
            test:/\.scss$/,
            loaders: ['style-loader', 'css-loader', 'sass-loader']
          }

react中安裝sass的方法

三、這樣就可以愉快地使用scss文件了

react中安裝sass的方法

感謝你能夠認真閱讀完這篇文章,希望小編分享react中安裝sass的方法內(nèi)容對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業(yè)資訊頻道,遇到問題就找億速云,詳細的解決方法等著你來學習!

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI