Giter VIP home page Giter VIP logo

mpa-rspack-plugin's Introduction

mpa-rspack-plugin

NPM version

How it works

It will collect */index.[jt]sx? files under src/pages directory as entries, and generate corresponding HTML file for each entry.

Install

npm install --save-dev mpa-rspack-plugin

Usage

const MpaRspackPlugin = require('mpa-rspack-plugin')

module.exports = {
  plugins: [
    new MpaRspackPlugin(),
  ],
}

Options

new MpaRspackPlugin({
  /**
   * Pass to builtins.html
   * See https://www.rspack.dev/config/builtins.html#builtinshtml
   */
  html: {},
  /**
   * ID of the node to be mounted during page rendering.
   * @default 'root'
   */
  mountElementId: 'root',
  /**
   * The paths of the global dependencies.
   * For example: ['./src/global.scss']
   */
  globalImport: [],
  /**
   * Whether to convert the output HTML filename to lowercase.
   * @default false
   */
  lowerCase: false,
  /**
   * The path of the layout component.
   * For example: './src/layout.jsx'
   */
  layout: '',
  /**
   * The address that will open in the browser after devServer starts.
   */
  open: '',
})

The page-level configuration

Create config.json at the same level as the page component to declare page-level configuration. The page-level configuration will be merged with the global html configuration to generate the final configuration for the page.

{
  "filename": "xxxx.html",
}

Layout

The page component will be passed as a child component to the Layout component.

export default function Layout({ children }) {
  return children
}

mpa-rspack-plugin's People

Contributors

dingff avatar

Stargazers

 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.