webpack 報錯 No PostCSS Config found 這個問題我在百度上找了很久,也沒有找到解決方案,最後沒有辦法只能本身去啃官方文檔,本案例在本人的webpack 學習感悟中已經寫過,可是發現不少人仍是沒有找到答案,因此就將本問題整理爲獨立版本。本着互聯網分享精神,現將本篇文件分享給你們。css
本案例通過本人實測絕對好使。 html
文件地址 http://pan.baidu.com/s/1mhEUtk8webpack
npm install postcss-import autoprefixer cssnano style-loader postcss-loader --save-devweb
var htmlWebpackPlugin = require('html-webpack-plugin'); var path = require('path'); module.exports = { entry: './src/app.js', output: { path: path.resolve(__dirname, './dist/js'), filename: 'js/[name].bundle.js' }, module: { loaders: [ { test: /\.css$/, use: [ 'style-loader', { loader: 'css-loader', options: {importLoaders: 1} //這裏能夠簡單理解爲,若是css文件中有import 進來的文件也進行處理 }, { loader: 'postcss-loader', options: { // 若是沒有options這個選項將會報錯 No PostCSS Config found plugins: (loader) => [ require('postcss-import')({root: loader.resourcePath}), require('autoprefixer')(), //CSS瀏覽器兼容 require('cssnano')() //壓縮css ] } } ] } ] }, plugins: [ new htmlWebpackPlugin({ filename: 'index.html', template: 'index.html', inject: 'body' //將js文件插入body文件內 }), ] };
入口文件app.js內容npm
import './css/common.css'; const App = function () { }; new App();