html-webpack-routes-plugin

0.1.3 • Public • Published

Routes for HTML Webpack Plugin

CircleCI Status GitHub license

Extends HTML Webpack Plugin to add support for cloning routes and prerendering them.

Note: prerender functionality is still a WIP, may not work as expected

Installation

yarn add html-webpack-routes-plugin -D

or

npm add html-webpack-routes-plugin --save-dev

Usage

Require the plugin in your webpack config:

const HtmlWebpackRoutesPlugin = require('html-webpack-routes-plugin');

Add the plugin to your webpack config as follows:

plugins: [
  new HtmlWebpackPlugin(),
  new HtmlWebpackRoutesPlugin([
    '/page1',
    '/page2'
  ])
]

Settings

Name Type Default Description

TODO

Examples

TODO

Other Examples

See a few other working examples here: https://github.com/colbyfayock/html-webpack-routes-plugin/tree/master/examples

/html-webpack-routes-plugin/

    Package Sidebar

    Install

    npm i html-webpack-routes-plugin

    Weekly Downloads

    67

    Version

    0.1.3

    License

    MIT

    Unpacked Size

    559 kB

    Total Files

    66

    Last publish

    Collaborators

    • colbyfayock