https://github.com/jmbl1685/ant-design-angular
Getting started with Ant Design
https://github.com/jmbl1685/ant-design-angular
angular angular-ui-components ant ant-design dashboard ng-zorro
Last synced: 8 months ago
JSON representation
Getting started with Ant Design
- Host: GitHub
- URL: https://github.com/jmbl1685/ant-design-angular
- Owner: jmbl1685
- Created: 2020-10-24T12:55:35.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2020-10-24T18:10:55.000Z (almost 5 years ago)
- Last Synced: 2025-01-04T14:42:17.066Z (9 months ago)
- Topics: angular, angular-ui-components, ant, ant-design, dashboard, ng-zorro
- Language: TypeScript
- Homepage: https://ant-design-angular.vercel.app
- Size: 160 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Angular UI Boilerplate using Ant Design
#### References:
Ant Design (https://ant.design)
- Ant Design (Angular): https://ng.ant.design/components/overview/en
- ngx-loading-bar: https://aitboudad.github.io/ngx-loading-bar
- Boxicons: https://boxicons.comEdit your theme:
```js
/* webpack.config.js */module.exports = {
module: {
rules: [
{
test: /\.less$/,
loader: "less-loader",
options: {
modifyVars: {
"primary-color": "#1a1a1a",
"link-color": "#1a1a1a",
"border-radius-base": "2px",
},
javascriptEnabled: true,
},
},
],
},
};
```