mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-06 12:27:46 +00:00
17 lines
301 B
JavaScript
17 lines
301 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',
|
|
],
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
plugins: [],
|
|
};
|