gatsby-plugin-antd

2.2.0 • Public • Published

npm package

gatsby-plugin-antd

Use Ant Design with Gatsby

Install

npm install antd gatsby-plugin-antd --save

How to use

  1. Include the plugin in your gatsby-config.js file.
// in gatsby-config.js
plugins: [
  'gatsby-plugin-antd'
]
// or if you want to use less
plugins: [
  {
      resolve: 'gatsby-plugin-antd',
      options: {
        style: true
      }
  }
]

note: if you are using less then you need to install less

  1. In your component(s) include the Ant Design component using dynamic imports as suggested here https://ant.design/docs/react/getting-started#Import-on-Demand
// in your component
import { Button } from 'antd'
 
export default () => <Button type="primary">Primary</Button>
  1. It will pull in the component and the relevant css file using babel-plugin-import

Dependents (28)

Package Sidebar

Install

npm i gatsby-plugin-antd

Weekly Downloads

1,873

Version

2.2.0

License

MIT

Unpacked Size

9.86 kB

Total Files

16

Last publish

Collaborators

  • bskimball