razzle-plugin-manifest
v4.2.18
Published
This package contains a plugin for generating manifest file for splitted chunk paths with Razzle
Downloads
1,904
Readme
razzle-plugin-manifest
This package contains a plugin for generating manifest file for splitted chunk paths with Razzle
Usage in Razzle Projects
npm i razzle-plugin-manifest
or
yarn add razzle-plugin-manifest
Using the plugin with the default options
// razzle.config.js
module.exports = {
plugins: ['manifest'],
};
A file called chunks.json
will get generated at build time. you can import the file using RAZZLE_CHUNKS_MANIFEST
enviroment variable.
example:
const chunks = require(process.env.RAZZLE_CHUNKS_MANIFEST);