Skip to content

Commit

Permalink
Updated readme with cssSourceMap option and other minor improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
alexblunck committed Nov 23, 2017
1 parent 829dc8f commit 73730f2
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,20 +22,22 @@ 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
}
```

- `framework` Javascript framework that is used: "vanilla", "react" or "ng1"
- `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

Expand Down

0 comments on commit 73730f2

Please sign in to comment.