0.6.6
windows7、Google Chrome版本 63.0.3239.84、
https://ng.ant.design/issue-helper/#/new-issue
启动报错
不报错
报错


just try removing all the node_modules and reinstall, if you are using cnpm or tnpm, please use --by=npm option.
@vthinkxie Still the same
@xiongyayun428
everything works fine in our integration test here https://travis-ci.org/NG-ZORRO/ng-zorro-antd/jobs/316302861,
if there is anything wrong in your project, please reproduce it or check your environment, we CAN NOT help you only with your one screenshot.
and please do not ask the question that can not be answered https://zhuanlan.zhihu.com/p/25795393
@xiongyayun428 check your cdk again, you must have install wrong cdk version.
https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/package.json#L43
@vthinkxie
Angular CLI: 1.6.1
Node: 9.3.0
OS: win32 x64
Angular: 5.1.1
... animations, common, compiler, compiler-cli, core, forms
... http, language-service, platform-browser
... platform-browser-dynamic, platform-server, router
@angular/cdk: 5.0.0
@angular/cli: 1.6.1
@angular/material: 5.0.1
@angular-devkit/build-optimizer: 0.0.36
@angular-devkit/core: 0.0.22
@angular-devkit/schematics: 0.0.42
@ngtools/json-schema: 1.1.0
@ngtools/webpack: 1.9.1
@schematics/angular: 0.1.11
@schematics/schematics: 0.0.11
typescript: 2.6.2
webpack: 3.10.0
@xiongyayun428 cdk version is the same as material design, it has conflict with ng-zorro-antd version 0.6.6, since 0.6.6 only support the cdk 5.0.0. there must be a warning when you install your node_modules.
Solved this problem by removing node_modules/ under ng-zorro-antd/.
Solved this problem by removing node_modules/ under ng-zorro-antd/.
although i solved too by ur way,i still don`t know why. this node_modules effect the global?
Solved this problem by removing node_modules/ under ng-zorro-antd/.
works for me too.
[email protected]
[email protected]
run this command can also solve this:
rm -rf node_modules && rm package-lock.json && npm install
It works for me.Thx @wgjtyu
Solved this problem by removing node_modules/ under ng-zorro-antd/.
Worked for me. Thanks, @xwHoward.
Same problem here :(
My versions:

Quick note that I just had a similar issue on my project and it turns out the @angular/cdk dependency I had in my project was old than the one ng-zorro-antd declares as a dependency and it seemed to create an issue with the injector for Overlay.
If anyone gets a similar issue, my first advice would be to ensure the @angular/cdk version you use in your project (if you do declare one explicitly) matches the version ng-zorro-antd uses. In my particular case, for [email protected], I needed @angular/[email protected].
Most helpful comment
Solved this problem by removing node_modules/ under ng-zorro-antd/.