您好,登錄后才能下訂單哦!
這篇文章主要介紹了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'] }
三、這樣就可以愉快地使用scss文件了
感謝你能夠認真閱讀完這篇文章,希望小編分享react中安裝sass的方法內(nèi)容對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業(yè)資訊頻道,遇到問題就找億速云,詳細的解決方法等著你來學習!
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。