Edit in GitHubLog an issue

Magento root components plugin

This plugin creates unique chunks for each Root Component in a Magento PWA project and extension.

Example

Given a RootComponents directory in a PWA project with the following structure:

Copied to your clipboard
├── Page1
│ └── index.js
├── Page2
│ └── index.js
└── Page3
└── index.js

This plugin creates unique chunks for Page1, Page2, and Page3. Further webpack optimization techniques, such as CommonsChunkPlugin, can be applied if needed.

Example usage

Copied to your clipboard
// webpack.config.js
const path = require("path");
const { MagentoRootComponentsPlugin } = require("@magento/pwa-buildpack");
module.exports = {
entry: {
main: path.join(__dirname, "src"),
},
output: {
path: path.join(__dirname, "dist"),
filename: "[name].js",
chunkFilename: "[name].chunk.js",
},
plugins: [
new MagentoRootComponentsPlugin({
rootComponentsDirs: [path.join(__dirname, "src/RootComponents")], // optional
manifestFileName: "roots-manifest.json", // optional
}),
],
};
  • Privacy
  • Terms of Use
  • Do not sell or share my personal information
  • AdChoices
Copyright © 2024 Adobe. All rights reserved.