3

我真的很沮丧,因为我找不到任何关于这个主题的有用资源。

我只想看我的 .css 文件,使用 post css 插件来转换它们,最后将它们导出到我的 /public 文件夹,就像我已经对我的 .jsx 文件所做的那样

这是我的网络包配置

    const path = require('path');
const webpack = require('webpack');

var ExtractTextPlugin = require('extract-text-webpack-plugin');

module.exports = {
    entry: path.resolve('src/index.jsx'),
    output: {
        path: path.resolve('public'),
        filename: 'bundle.js'
    },
    resolve: {
        extensions: ['*', '.js', '.jsx']
    },
    devServer: {
        publicPath: "/",
        contentBase: "./public"
    },
    module: {
        rules: [
            {
                test: /\.css$/,
                exclude: /node_modules/,
                loader: ExtractTextPlugin.extract({
                    fallback: 'style-loader',
                    use: [
                        {
                            loader: 'css-loader',
                            options: {
                                modules: true,
                                localIdentName: '[name]__[local]___[hash:base64:5]'
                            }
                        }, {
                            loader: 'postcss-loader',
                            options: {
                                plugins: function() {
                                    return [require('lost'), require('postcss-cssnext'), require('postcss-import')]
                                }
                            }
                        }
                    ]
                })
            }, {
                test: /\.jsx?$/,
                use: [
                    {
                        loader: 'babel-loader',
                        options: {
                            presets: ['es2015', 'react']
                        }
                    }
                ],
                exclude: /(node_modules|bower_components)/
            }
        ]
    },
    plugins: [new ExtractTextPlugin("main.css")]
}
4

2 回答 2

4

我假设您正在使用 webpack2

如果您希望单独转储 css 文件,则需要 ExtractTextPlugin。这是我的css加载器,它可以工作

我在 webpack 配置中定义了 post css 插件,因为这样它就留在了一个地方。希望这可以帮助:

var ExtractTextPlugin = require('extract-text-webpack-plugin');
...
...
module.exports = {
...
...
    module: {
        rules: [
...
...
            {
                test: /\.css$/,
                exclude: /node_modules/,
                loader: ExtractTextPlugin.extract(
                    { fallback: 'style-loader',
                    use: [{
                        loader: 'css-loader',
                        options: {
                            modules: true,
                            localIdentName:'[name]__[local]___[hash:base64:5]'
                        }
                    },
                    {
                        loader: 'postcss-loader',
                        options: {
                            plugins: function() {
                                return [
                                    require('autoprefixer')
                                ]
                            }
                        }
                    },
                ]
            })
        },
}
于 2017-03-23T22:48:06.280 回答
0

也许您的插件创建不正确。

尝试

return [require('lost')(), require('postcss-cssnext')(), require('postcss-import')()]

(注意 () 调用插件创建)。

您实际上是否在使用 import/require() 来包含您的 CSS?如果你不应该这样做,那么没有什么神奇的东西会覆盖你的 CSS :)

于 2017-03-26T07:03:05.677 回答