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