From 36bd8f183769c4f6ba925b35564a345a571f26b4 Mon Sep 17 00:00:00 2001 From: ILYA Date: Sun, 29 Dec 2019 17:31:37 +0300 Subject: [PATCH] docs: fix typos (#453) --- README.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index aeff8cea..23a29311 100644 --- a/README.md +++ b/README.md @@ -94,7 +94,7 @@ Automatically injects styles into the DOM using multiple ``. It i import './styles.css'; ``` -Example with c Locals (CSS Modules): +Example with Locals (CSS Modules): **component-with-css-modules.js** @@ -314,7 +314,10 @@ module.exports = { { test: /\.lazy\.css$/i, use: [ - { loader: 'style-loader', options: { injectType: 'lazyStyleTag' } }, + { + loader: 'style-loader', + options: { injectType: 'lazySingletonStyleTag' }, + }, 'css-loader', ], },