| 123456789101112131415161718192021 |
- const { iconsPlugin, getIconCollections } = require("@egoist/tailwindcss-icons")
- /** @type {import('tailwindcss').Config} */
- module.exports = {
- content: [
- './src/**/*.{html,js,ts,jsx,tsx}',
- '../mini-ui-packages/mini-enterprise-auth-ui/src/**/*.{ts,tsx}'
- ],
- theme: {
- extend: {},
- },
- plugins: [
- iconsPlugin({
- // Select the icon collections you want to use
- collections: getIconCollections(["mdi", "lucide", "heroicons", "heroicons-outline", "heroicons-solid"]),
- }),
- ],
- corePlugins: {
- preflight: false,
- },
- }
|