【问题标题】:Webpack3 CSS/LESS is not working when imported from React ES6从 React ES6 导入时,Webpack3 CSS/LESS 不起作用
【发布时间】: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


    【解决方案1】:

    你需要前缀./,否则它会寻找一个名为styles的npm模块。

    import styles from './styles/index.css';?
    

    【讨论】:

      猜你喜欢
      • 2018-05-18
      • 2018-12-05
      • 1970-01-01
      • 1970-01-01
      • 2018-06-24
      • 2018-07-04
      • 1970-01-01
      • 1970-01-01
      • 2018-01-04
      相关资源
      最近更新 更多