mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-09 20:37:47 +00:00
13 lines
246 B
JavaScript
13 lines
246 B
JavaScript
// tailwind.config.js
|
|
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
corePlugins: {
|
|
preflight: true,
|
|
},
|
|
content: ['./src/pages/*.js', './src/components/stream/**/*.js'],
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
plugins: [],
|
|
};
|