gpt4 book ai didi

javascript - 使用 webpack 和 gulp 生成 bundle.js

转载 作者:行者123 更新时间:2023-11-30 16:12:17 26 4
gpt4 key购买 nike

我已经配置了gulp & webpack来生成一个bundle.js文件,看看下面的代码:

gulp

// Webpack
gulp.task('webpack', function() {
return gulp.src('./app/app.js')
.pipe(webpack(require('./webpack.config.js')))
.pipe(gulp.dest('./build'));
});

网页包

var path = require('path');

module.export = {
entry: './app/app.js',
output: {
filename: "./build/bundle.js",
sourceMapFilename: "./build/bundle.map"
},
devtool: '#source-map',
module: {
loaders: [
{
loader: 'babel',
test: /\.jsx?$/,
exclude: /(node_modules|bower_components)/,
query: {
presets: ['react', 'es2015', 'stage-2']
}
}
]
},
resolve: {
root: path.resolve('./app'),
extenstions: ['', '.js']
}
}

基本上我的问题是文件生成正确但文件名错误,应该是 bundle.js 并且我得到一个随机文件名,如 63432692d402c38f8df5.js

知道发生了什么吗?

enter image description here

最佳答案

在 webpack.config.js 中将 module.export 更改为 module.exports

关于javascript - 使用 webpack 和 gulp 生成 bundle.js,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36064442/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com