我看到了other question約react-icons不加載在webpack中,但我得到的錯誤有點不同,我不知道如何解決它。react-icons解決與webpack錯誤
我試圖用反應-的圖標,但的WebPack我發現了以下錯誤:
ERROR in ./components/line-item.jsx Module not found: Error: Cannot resolve module 'react-icons' in public/map/components @ ./components/line-item.jsx 7:18-40
這裏是我的WebPack設置:
var path = require('path');
var webpack = require('webpack');
var config = {
iconPath: 'node_modules/react-icons'
};
module.exports = {
entry: './main.js',
output: {path: __dirname, filename: 'bundle.js'},
module: {
loaders: [
{
test: /.jsx?$/,
loader: 'babel-loader',
exclude: /node_modules/,
query: {
presets: ['es2015', 'react']
}
},
{
test: /react-icons\/(.)*(.js)$/,
loader: 'babel',
include: config.iconPath
},
{
test: /\.scss/,
loader: 'style!css!sass'
}
]
}
};
這裏就是我試圖導入我的行中的react-icons -jsx
import React from 'react';
import FaBeer from 'react-icons';
var LineItem = React.createClass({
})
module.exports = LineItem;
我是全新的webpack,只是學習,因爲我要去埠任何幫助將不勝感激。
編輯: 我改變了進口
import FaBeer from 'react-icons/fa/beer';
,現在得到一個不同的錯誤,我做的認爲這是相關的WebPack
ERROR in ./~/react-icons/fa/beer.js Module parse failed: /Users/oyachinskiy/Documents/ichnaea-root/web-reporting/public/map/node_modules/react-icons/fa/beer.js Unexpected token (8:12) You may need an appropriate loader to handle this file type.
謝謝!
我反應過來,圖標安裝作爲一個依賴關係,而這也不起作用。當我只是試圖要求它時發生同樣的錯誤。 – yoleg
看到我編輯的答案 - 你的語法與他們的文檔不匹配。 – Toby
好吧,我得到一個不同的錯誤...錯誤在./~/react-icons/fa/beer.js 模塊解析失敗的網絡報告/公共/地圖/ node_modules/react-icons/fa /啤酒。 js意外標記(8:12) 您可能需要一個合適的加載器來處理此文件類型。這就是爲什麼我認爲我需要編輯webpack配置 – yoleg