kriasoft / ignore-webpack-plugin

Webpack plugin that excludes dynamically imported dependencies from the output bundle, used for SSR.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Ignore Webpack Plugin · npm package npm package Discord

This Webpack plugin excludes dynamically imported dependencies from the output bundle. This is often used for scenarios such as server-side rendering / pre-rendering (SSR).

Usage Example

webpack.config.js

const { IgnoreAsyncImportsPlugin } = require("ignore-webpack-plugin");

module.exports = [
  // The core application bundle for browsers.
  {
    name: "app",
    entry: "./src/index",
    /* ... other settings ... */
  },
  // Additional (reverse proxy) bundle for Cloudflare Workers.
  {
    name: "proxy",
    entry: "./src/proxy",
    output: { filename: "proxy.js" },
    target: "browserslist:last 2 Chrome versions",
    /* ... other settings ... */
    plugins: [new IgnoreAsyncImportsPlugin()],
  },
];

All the import(...) expressions within the "proxy" bundle in the example above will be replaced with Promise.resolve(...).

Related Projects

Copyright

Copyright © 2021-present Kriasoft. This source code is licensed under the MIT license found in the LICENSE file.


Made with ♥  by Konstantin Tarkus (@koistya, blog) and contributors.

About

Webpack plugin that excludes dynamically imported dependencies from the output bundle, used for SSR.

License:MIT License


Languages

Language:JavaScript 100.0%