0.1.0 • Published 5 months ago

@rambler-tech/razzle-chunks v0.1.0

Weekly downloads
-
License
MIT
Repository
-
Last release
5 months ago

Chunks Plugin

Support for split chunks

Install

npm install -D @rambler-tech/razzle-chunks

or

yarn add -D @rambler-tech/razzle-chunks

Usage

Add the plugin to razzle.config.js

const path = require('path')
const ChunksPlugin = require('@rambler-tech/razzle-chunks')

module.exports = {
  plugins: [
    ChunksPlugin({
      vendors: /[\\/]node_modules[\\/]*[\\/]/
    })
  ],
  modifyWebpackConfig({webpackConfig}) {
    // ...
    return webpackConfig
  }
}
0.1.0

5 months ago