const path = require('path'); module.exports = { plugins: [ [ 'babel-plugin-module-resolver', { alias: { components: path.join(__dirname, './src/components'), }, }, ], [ 'import', { libraryName: 'antd', style: true, // or 'css' }, ], ], };