From 73730f239793c811255b9cddc4f22ba15ca8adf6 Mon Sep 17 00:00:00 2001 From: Alexander Blunck Date: Thu, 23 Nov 2017 15:09:07 +0100 Subject: [PATCH] Updated readme with cssSourceMap option and other minor improvements --- README.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 5137d36..a6e64bf 100644 --- a/README.md +++ b/README.md @@ -22,13 +22,14 @@ Add scripts to you `package.json` ``` ## Configuration -Add a `.webpackrc` file to the root of your project. Following options are available: +Add a `.webpackrc` file to the root of your project. Following options are default: ```json { "framework": "vanilla", - "port": "3000", + "port": 3000, "browser": "google chrome", - "favicon": "./src/assets/img/favicon.png" + "favicon": null, + "cssSourceMap": false } ``` @@ -36,6 +37,7 @@ Add a `.webpackrc` file to the root of your project. Following options are avail - `port` Port to start development server at - `browser` Browser to open development server in - `favicon` Relative path to image to use as favicon +- `cssSourceMap` Enable css / scss source maps (Causes style flash on initial load when running development server) ## Scripts