Devas9
Results
1
comments of
Devas9
> [Less 导入](https://github.com/webpack-contrib/less-loader#imports)不再推荐使用 `~`,而是尽可能使用 Webpack Resolver,因此应改成: > > ```diff > - @import "~ng-zorro-antd/divider/style/entry.less"; > + @import "ng-zorro-antd/divider/style/entry.less"; > ``` > > 但,这又引发另一个问题,Angular Cli 在编译 Less 时并不包含 `node_modules` 路径列表,所以还需要在 `angular.json` 中加入:...