From f40aeae312af73c6c5263cd99e81069f41d3b699 Mon Sep 17 00:00:00 2001 From: Stav Geffen Date: Sun, 11 Nov 2018 10:05:08 +0200 Subject: [PATCH] fix(README): adds a link to template option documentation --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index a55fd533..921f414e 100644 --- a/README.md +++ b/README.md @@ -205,11 +205,13 @@ your own template. The easiest way is to use the `template` option and pass a cu The html-webpack-plugin will automatically inject all necessary CSS, JS, manifest and favicon files into the markup. +Details of other template loaders are [documented here](https://github.com/jantimon/html-webpack-plugin/blob/master/docs/template-option.md). + ```js plugins: [ new HtmlWebpackPlugin({ title: 'Custom template', - // Load a custom template (lodash by default see the FAQ for details) + // Load a custom template (lodash by default) template: 'index.html' }) ]