Files
developer.sailpoint.com/tailwind.config.js
luke-hagar-sp f245977d7d FAQ adjustments
2023-01-23 14:55:22 -06:00

18 lines
343 B
JavaScript

// tailwind.config.js
/** @type {import('tailwindcss').Config} */
module.exports = {
corePlugins: {
preflight: true,
},
content: [
'./src/pages/**/*.js',
'./src/components/stream/**/*.js',
'./src/components/agenda/**/*.js',
'./src/components/Accordion/**/*.js',
],
theme: {
extend: {},
},
plugins: [],
};