Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

next-assets-manifest

webdeveric11.3kMIT0.3.0

Add webpack-assets-manifest to your Next.js project

next-assets-manifest, webpack-assets-manifest, next-plugin, next-plugins, assets, manifest, subresource, integrity, sri

readme

Next Assets Manifest

Build Status codecov dependencies Status devDependencies Status

Add webpack-assets-manifest to your Next.js project.

npm install next-assets-manifest --save-dev

Requirements

Example Usage

View examples.

assetsManifest, assetsManifestClient, and assetsManifestServer are optional.

The values for these options can be found here.

Add something like this to your next.config.js.

const withAssetsManifest = require('next-assets-manifest');

module.exports = withAssetsManifest({
  // These options are used for both client and server manifest plugins.
  assetsManifest: {
    done(manifest) {
      console.log(`${manifest}`);

      // You can get the options Next.js uses, if you need it for anything.
      console.log(manifest.options.extra.nextOptions);
    },
  },
  // Customize the client side manifest.
  assetsManifestClient: {
    output: 'client-manifest.json',
  },
  // Customize the server side manifest.
  assetsManifestServer: {
    output: 'server-manifest.json',
  },
});