From 28df3c43ec4215f16d4bb199d6ca4da3c5253bb5 Mon Sep 17 00:00:00 2001 From: Eli Perelman Date: Mon, 27 Feb 2017 11:17:46 -0600 Subject: [PATCH] Fixing LESS example usage --- docs/customization/simple.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/customization/simple.md b/docs/customization/simple.md index 964c3f1..1d99b76 100644 --- a/docs/customization/simple.md +++ b/docs/customization/simple.md @@ -82,7 +82,7 @@ Using `module.rule.loader` allows to you define the Webpack loader and its optio This loader is usually a `dependency` or `devDependency` of your project. Each `loader` object can specify a property for the string `loader` and an `options` object. -_Example: Add LESS loading to the project._ +_Example: Add LESS loading to the project, by extending the `css` rule._ ```json { @@ -94,7 +94,7 @@ _Example: Add LESS loading to the project._ "neutrino": { "module": { "rule": { - "styles": { + "css": { "test": "\\.less$", "loader": { "less": {