欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

webpack插件及配置

程序员文章站 2022-07-12 19:54:06
...
const path = require('path')
// html打包
const htmlWebpackPlugin = require('html-webpack-plugin')
// js压缩
const UglifyJsPlugin = require("uglifyjs-webpack-plugin");
// 打包前删除之前包
const { CleanWebpackPlugin } = require('clean-webpack-plugin')
// 独立打包css
const ExtractTextPlugin = require("extract-text-webpack-plugin")
// copy src目录下文件至打包文件
const CopyWebpackPlugin = require('copy-webpack-plugin')


module.exports = {
  //mode development: 开发环境 production:生产环境
  mode: 'development',
  //entry 入口文件配置  
  entry: {
    index: './src/main.js',
  },
  //打包完成后文件输出位置配置
  output: {
    //filename 设置打包后文件的名字
    //如果不设置filename,则文件的名字跟入口文件路径的属性名一样
    filename: '[name].js',
    //path 设置打包完成后文件输出路径
    path: path.resolve(__dirname, 'dist')
  },
  module: {
    rules: [
      {
        // js 文件才使用 babel
        test: /\.js$/,
        // 使用哪个 loader
        use: 'babel-loader',
        // 不包括路径
        exclude: /node_modules/
      },
      {
        test: /\.css$/,
        loader: ExtractTextPlugin.extract({
          fallback: 'style-loader',
          use: [{
            loader: 'css-loader',
            options: {
              modules: true
            }
          }]
        })
      }
    ],
  },
  plugins: [
    new htmlWebpackPlugin({
      template: './src/index.html'
    }),
    new UglifyJsPlugin(),
    // 输出的文件路径
    new ExtractTextPlugin("/css/[name].[hash].css"),
    new CopyWebpackPlugin([  //src下其他的文件直接复制到dist目录下
      { from: 'src/css', to: 'css/' }
    ]),
    new CleanWebpackPlugin()
  ],
  // devServer: {
  //   contentBase: './dist',
  //   open: true, //自动打开浏览器
  //   // port: 8080, //默认8080
  // }
}