Giter Club home page Giter Club logo

webpack's Introduction

Webpack Notes

1. Configuration

1.1 Loaders

1.1.1 Introduction

Out of the box, webpack only understands JavaScript and JSON files. Loaders allow webpack to process other types of files and convert them into valid modules that can be consumed by your application and added to the dependency graph. from webpack documentation

  • test: RegExp
  • use: string, object, or array
  • include/exclude
  • options

1.1.2 Classification

  • Configure css
  • Configure images, including: jpg, jpeg, png, gif etc
  • Configure js

1.2 Plugins configuration

2. Optimization

2.1 Css and js and html compress

  • Compress css

npm install --save-dev optimize-css-assets-webpack-plugin

  • Compress js

terser-webpack-plugin

  • Compress html

npm install --save-dev html-webpack-plugin

const OptimizeCssAssetsWebpackPlugin = require('optimize-css-assets-webpack-plugin');
const TerserWebpackPlugin = require('terser-webpack-plugin');

module.exports = {
  mode: 'production',
  optimization: {
    minimizer: [
      new OptimizeCssAssetsWebpackPlugin(),
      new TerserWebpackPlugin(),
    ]
  },
}

new htmlWebpackPlugin({
  template: resolve(__dirname, "../public/vue.html"),
  filename: "vueindex.html",
  chunks: ["vue"],
  minify: !isDev && {
    removeAttributeQuotes: true,
    collapseWhitespace: true
  },
}),

2.2 Delete unused css

npm install --save-dev purgecss-webpack-plugin npm install --save-dev mini-css-extract-plugin

const PurgecssPlugin =  require('purgecss-webpack-plugin');
const glob = require('glob');
// mini-css-extract-plugin is needed.
{
 plugins: [
   !isDev && new PurgecssPlugin({
       paths: glob.sync(`${path.join(__dirname, "src")}/**/*`, { nodir: true }) 
       // Not Matching directories, only files.
       // paths: Array
   }),
   !isDev && new MiniCssExtractPlugin({
     filename: "css/[name].[contentHash].css"
   }),
 ].filter(Boolean)
}

webpack's People

Contributors

stellayangf avatar

Stargazers

 avatar Jaasdsa avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.