razzle-plugin-manifest

This package contains a plugin for generating manifest file for splitted chunk paths with Razzle

Usage no npm install needed!

<script type="module">
  import razzlePluginManifest from 'https://cdn.skypack.dev/razzle-plugin-manifest';
</script>

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);