From 0ae78e4fc4a4ec1561c920fabea17bbc6e43d400 Mon Sep 17 00:00:00 2001 From: Jonathan Grupp Date: Wed, 15 Feb 2017 20:36:49 +0100 Subject: [PATCH] readme: faq for component SCSS - refer to wiki page in addition to issue #136 (#1530) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7ecd85f704..bc58afdd70 100644 --- a/README.md +++ b/README.md @@ -332,7 +332,7 @@ import * as _ from 'lodash'; * How do I start the app when I get `EACCES` and `EADDRINUSE` errors? * The `EADDRINUSE` error means the port `3000` is currently being used and `EACCES` is lack of permission for webpack to build files to `./dist/` * How to use `sass` for css? - * `loaders: ['raw-loader','sass-loader']` and `@Component({ styleUrls: ['./filename.scss'] })` see issue [#136](https://github.com/AngularClass/angular2-webpack-starter/issues/136) + * * `loaders: ['raw-loader','sass-loader']` and `@Component({ styleUrls: ['./filename.scss'] })` see Wiki page [How to include SCSS in components](https://github.com/AngularClass/angular2-webpack-starter/wiki/How-to-include-SCSS-in-components), or issue [#136](https://github.com/AngularClass/angular2-webpack-starter/issues/136) for more information. * How do I test a Service? * See issue [#130](https://github.com/AngularClass/angular2-webpack-starter/issues/130#issuecomment-158872648) * How do I add `vscode-chrome-debug` support?