這次帶給大家怎樣在專案中使用檔案預處理器,在專案中使用檔案預處理器的注意事項有哪些,以下就是實戰案例,一起來看一下。
安裝
我們需要用到babel-loader babel-core babel-preset
搭配版本:webpack 3.x | babel-loader 8 .x | babel 7.x
npm install babel-loader@8.0.0-beta.0 @babel/core @babel/preset-env webpack webpack 3.x babel-loader 7.x | babel 6.x
使用
先來上一個小栗子:
var htmlWebpackPlugin = require('html-webpack-plugin') const path = require('path') module.exports = { mode: 'development', entry: './src/app.js', output: { filename: 'js/bundle.js', path: path.resolve(__dirname, 'dist') }, module: { rules: [ { test: /\.js$/, exclude: /(node_modules|bower_components)/, // (不处理node_modules 和 bower_components下的js文件) 优化处理加快速度 use: { loader: 'babel-loader', options: { // options选项中的presets设置的就是当前js的版本 presets: ['@babel/preset-env'] } } } ] }, plugins: [ new htmlWebpackPlugin({ template: 'index.html', inject: 'body', filename: 'index.html' }) ] }
可以使用options 屬性來給loader 傳遞選項。
相信看了本文案例你已經掌握了方法,更多精彩請關注php中文網其它相關文章!
推薦閱讀:
以上是怎樣在專案中使用文件預處理器的詳細內容。更多資訊請關注PHP中文網其他相關文章!