我使用vue-cli webpack(简单)模板开始了一个项目。
当我尝试使用npm run build
进行版本构建时,我会使用预期的build.js等获取我的dist文件夹。在测试构建版本时,该应用程序适用于除IE(11)之外的所有浏览器。
IE中的错误引用了Promise,因此我查看了dist.js文件并看到了new Promise()
语法。我对vue-loader和babel不是很熟悉,但是当我运行build命令时,我认为所有的es6 +代码都会被转换为es5。
我没有使用vue-cli webpack模板默认修改webpack.config.js。
我对翻译的期望是错误还是我错过了什么?
.babelrc
{
"presets": [
["env", { "modules": false }],
"stage-3"
]
}
webpack.config.js
var path = require('path')
var webpack = require('webpack')
module.exports = {
entry: './src/main.js',
output: {
path: path.resolve(__dirname, './dist'),
publicPath: '/dist/',
filename: 'build.js'
},
module: {
rules: [
{
test: /\.css$/,
use: [
'vue-style-loader',
'css-loader'
],
}, {
test: /\.vue$/,
loader: 'vue-loader',
options: {
loaders: {
}
// other vue-loader options go here
}
},
{
test: /\.js$/,
loader: 'babel-loader',
exclude: /node_modules/
},
{
test: /\.(png|jpg|gif|svg)$/,
loader: 'file-loader',
options: {
name: '[name].[ext]?[hash]'
}
}
]
},
resolve: {
alias: {
'vue$': 'vue/dist/vue.esm.js'
},
extensions: ['*', '.js', '.vue', '.json']
},
devServer: {
historyApiFallback: true,
noInfo: true,
overlay: true
},
performance: {
hints: false
},
devtool: '#eval-source-map'
}
if (process.env.NODE_ENV === 'production') {
module.exports.devtool = '#source-map'
// http://vue-loader.vuejs.org/en/workflow/production.html
module.exports.plugins = (module.exports.plugins || []).concat([
new webpack.DefinePlugin({
'process.env': {
NODE_ENV: '"production"'
}
}),
new webpack.optimize.UglifyJsPlugin({
sourceMap: true,
compress: {
warnings: false
}
}),
new webpack.LoaderOptionsPlugin({
minimize: true
})
])
}
节点 - 6.9.2 | npm - 3.10.2 | vue - 2.9.2
更新1/3/18
按照babel-polyfill的回答和更多的搜索,我可以通过更改我的条目来生成构建版本(npm run build)。将webpack.config.js文件中的prop添加到
entry: ['babel-polyfill', './src/main.js']
并将babel-polyfill import语句添加到我的main.js
import 'babel-polyfill'
将babel-loader和babel-polyfill npm包添加到我的依赖项
之后答案 0 :(得分:1)
ES6到ES5转换只处理语法转换,而不是polyfills(这些更像是运行时功能)。
您可以使用babel-polyfill(包括所有与ES6相关的polyfill)或es6-promise。