首页 > 代码库 > webpack报错no postcss config...
webpack报错no postcss config...
终端里运行的错误:
查了好多资料,最后找到解决办法,改为:
const webpack = require(‘webpack‘); // const autoprefixer = require(‘autoprefixer‘); // const values = require(‘postcss-modules-values‘); module.exports = { devtool: ‘eval-source-map‘, entry: __dirname + "/app/main.js", output: { path: __dirname + "/public", filename: "bundle.js" }, module: {//在配置文件里添加JSON loader loaders: [ { test: /\.json$/, loader: "json-loader" }, { test: /\.js$/, exclude:/node_modules/, loader:‘babel-loader‘, query:{ presets:[‘es2015‘,‘react‘] } }, { test:/\.css$/, use:[ { loader: ‘style-loader‘, }, { loader: ‘css-loader‘, options: { importLoaders: 1, } }, { loader:"postcss-loader", options: { // 如果没有options这个选项将会报错 No PostCSS Config found plugins: (loader) => [ require(‘autoprefixer‘)(), //CSS浏览器兼容 ] } } ] // loader:‘style-loader!css-loader?modules!postcss-loader‘ } ] }, plugins: [ new webpack.LoaderOptionsPlugin({ options:{ // postcss: function () { // return [ // require("autoprefixer")({ // browsers: [‘last 10 Chrome versions‘, ‘last 5 Firefox versions‘, ‘Safari >= 6‘, ‘ie > 8‘] // }) // ] // }, // plugins: (loader) => [ // require(‘autoprefixer‘)(), //CSS浏览器兼容 // ], devServer: { contentBase: "./public", colors: true, historyApiFallback: true, inline: true } } }) ] }
但是,这里?modules不起作用了,后面再看看怎么书写
webpack报错no postcss config...
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。