javascript example icon

Home

Index

search icon
  • home icon
  • Packages>

  • webpack>

  • DllPlugin

How to use the DllPlugin function from webpack

Find comprehensive JavaScript webpack.DllPlugin code examples handpicked from public code repositorys.

webpack.dll.conf.js

GitHub: jitwxs/paas-protal

jitwxs profile picture
8
9
10
11
12
13
14
15
16
17
  path: path.join(__dirname, '../static/js'),
  filename: '[name].dll.js',
  library: '[name]_library'
},
plugins: [
  new webpack.DllPlugin({
    path: path.join(__dirname, '.', '[name]-manifest.json'),
    name: '[name]_library'
  }),
  new webpack.optimize.UglifyJsPlugin({
fork icon10
star icon13
watch icon0

Other functions in webpack

Sorted by popularity

function icon

webpack.ProvidePlugin is the most popular function in webpack (1161 examples)

Other popular packages:

Home

About

Privacy Policy

Example Javascript © 2024