编译错误失败

Failed to compile errors

我正在做一个 Angular 项目。当我启动 ng serve 时,构建失败,如下所示。

这是由于6.0.1版本的Sass模块与4.0.0

版本编写的文件不兼容所致
npm uninstall node-sass
npm install node-sass@4.0.0

或者,使用 Yarn:

yarn remove node-sass
yarn add node-sass@4.0.0