var path = require('path');
module.exports = {
entry: './src/script/main.js',
output: {
path: path.resolve(__dirname, './dist/js/'),
filename: 'bundle.js'
}
}
module.exports = {
entry: './src/script/main.js',
output: {
path: path.resolve(__dirname, './dist/js/'),
filename: 'bundle.js'
}
}
2017-04-13
var path = require('path');
module:{
loaders:[
{
exclude:path.join(__dirname,"node_modules")
}
]
}
module:{
loaders:[
{
exclude:path.join(__dirname,"node_modules")
}
]
}
2017-04-12
ERROR in Entry module not found: Error: Can't resolve 'babel' in 'F:\ComponentDemo'
BREAKING CHANGE: It's no longer allowed to omit the '-loader' suffix when using loaders.
-->
loaders:[
{
test:/\.js$/,
loader:'babel-loader',
}
BREAKING CHANGE: It's no longer allowed to omit the '-loader' suffix when using loaders.
-->
loaders:[
{
test:/\.js$/,
loader:'babel-loader',
}
2017-04-12
老师的webpack版本是1.X,目前已经更新到2.X,使用2.x版本的朋友配置上稍微有点和老师说的不一样:
1: 在webpack.config.js里面,向loader传参不在使用query,而是使用options
{test: '/\.js$/', loader: 'babel-loader', options: {'presets': ['env']}} (-loader不可以省略)
2: 另外如果是在.babelrc文件中配置的话,千万不要给.babelrc文件添加诸如js, json的后缀名,这个文件没有后缀,切记!切记!
1: 在webpack.config.js里面,向loader传参不在使用query,而是使用options
{test: '/\.js$/', loader: 'babel-loader', options: {'presets': ['env']}} (-loader不可以省略)
2: 另外如果是在.babelrc文件中配置的话,千万不要给.babelrc文件添加诸如js, json的后缀名,这个文件没有后缀,切记!切记!
2017-04-12
老师的webpack版本是1.X,目前已经更新到2.X,使用2.x版本的朋友配置上稍微有点和老师说的不一样:
1: 在webpack.config.js里面,向loader传参不在使用query,而是使用options
1: 在webpack.config.js里面,向loader传参不在使用query,而是使用options
2017-04-12