@fabio-arsenal/razzle-plugin-manifest
v1.0.22
Published
This package contains a plugin for generating manifest file for splitted chunk paths with Razzle
Downloads
892
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);