会报错,说postcss没有配置文件,很简单,在根目录下创建postcss.config.js,里面写 module.exports = {
plugins: [
require('autoprefixer')({
broswers: ['last 5 versions']
})
]
} 就可以啦
plugins: [
require('autoprefixer')({
broswers: ['last 5 versions']
})
]
} 就可以啦
2017-03-02
Html Webpack Plugin:
TypeError: Cannot read property '0' of undefined
- ExternalModuleFactoryPlugin.js:18 ExternalModuleFactoryPlugin.
[jianshan]/[webpack]/lib/ExternalModuleFactoryPlugin.js:18:38
这个问题,有朋友遇到吗?怎么解决的的呢?谢谢
TypeError: Cannot read property '0' of undefined
- ExternalModuleFactoryPlugin.js:18 ExternalModuleFactoryPlugin.
[jianshan]/[webpack]/lib/ExternalModuleFactoryPlugin.js:18:38
这个问题,有朋友遇到吗?怎么解决的的呢?谢谢
2017-03-02
对于postcss没有configuration文件的错误,只需要在根目录里面,新建一个postcss.config.js文件,之后在文件里面,写上 module.exports = {}。 放在那里不用管就可以了,一路坎坷,一路坑,继续前进呀。
按照以上方法,虽然没有报错。但是还是没有成功生成样式前缀???
按照以上方法,虽然没有报错。但是还是没有成功生成样式前缀???
2017-03-02
module:{
module:{......},
rules:[
{test:/\.css$/,
use:[{loader:'style-loader',},{loader:'css-loader', },{loader:'postcss-loader', options:{plugins:function () {return [require('autoprefixer')({browsers:["last 5 versions"]})];}}}]
}
]
},
module:{......},
rules:[
{test:/\.css$/,
use:[{loader:'style-loader',},{loader:'css-loader', },{loader:'postcss-loader', options:{plugins:function () {return [require('autoprefixer')({browsers:["last 5 versions"]})];}}}]
}
]
},
2017-03-01
Conflict: Multiple assets emit to the same filename bundle.js
报这个错的先别急,老师后面有讲。
估计我们版本更高,有报错,老师那个版本不会报错。
他是为了举个例子,讲解filename: '[name].js'
报这个错的先别急,老师后面有讲。
估计我们版本更高,有报错,老师那个版本不会报错。
他是为了举个例子,讲解filename: '[name].js'
2017-03-01
补充下:如果想要和老师的目录一样 在.bin 目录下执行 webpack ../../hello.js ../../hello.bundle.js
2017-03-01