首頁 > web前端 > js教程 > react中怎麼安裝sass

react中怎麼安裝sass

coldplay.xixi
發布: 2020-11-26 16:30:50
原創
4910 人瀏覽過

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

react中怎麼安裝sass

  • 該方法適用於所有品牌電腦

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數組中,然後找到最後一個配置,修改成如下的樣子

            {
              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

######################## #############相關免費學習推薦:###javascript###(影片)######

以上是react中怎麼安裝sass的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
最新問題
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板