【发布时间】:2017-12-20 06:05:51
【问题描述】:
我正在使用 Webpack 来识别 CSS/LESS 文件,但没有取得很大成功。
这是我的 Webpack 文件:
const path = require("path");
const HtmlWebPackPlugin = require("html-webpack-plugin");
const ExtractTextPlugin = require("extract-text-webpack-plugin");
module.exports = {
entry: ["./src/App.js"],
output: {
path: path.resolve(__dirname, "dist"),
filename: "app.bundle.js"
},
module: {
rules: [
{
test: /\.css$/i,
use: ExtractTextPlugin.extract({
use: ['style-loader', 'css-loader'] //, 'less-loader']
})
},
{
test: /\.js$/,
exclude: /node_modules/,
use: {
loader: "babel-loader"
}
},
{
test: /\.html$/,
use: [
{
loader: "html-loader"
}
],
},
]
},
plugins: [
new ExtractTextPlugin('app.bundle.css'),
new HtmlWebPackPlugin({
template: "./src/index.html",
filename: "./index.html",
inject: "body"
}),
],
devServer: {
contentBase: "./dist",
filename: "app.bundle.js",
publicPath: "/",
stats: {
colors: true
}
},
};
当我尝试从我的 React 文件中导入它时,我得到以下结果:
import styles from 'styles/index.css';
错误:
ERROR in ./src/App.js
Module not found: Error: Can't resolve 'styles/index.css' in '/code/customers/project/map/src'
@ ./src/App.js 15:13-40
@ multi ./src/App.js
文件明显存在。知道为什么 webpack 拒绝包含该文件吗?
谢谢!
【问题讨论】:
标签: javascript reactjs webpack ecmascript-6