mirror of
https://github.com/ParisNeo/lollms.git
synced 2024-12-26 07:41:06 +00:00
15 lines
258 B
JavaScript
15 lines
258 B
JavaScript
|
/** @type {import('tailwindcss').Config} */
|
||
|
module.exports = {
|
||
|
purge: [
|
||
|
'./src/**/*.vue',
|
||
|
'./src/**/*.html',
|
||
|
// Add any other paths to your Vue components and templates here
|
||
|
],
|
||
|
content: [],
|
||
|
theme: {
|
||
|
extend: {},
|
||
|
},
|
||
|
plugins: [],
|
||
|
}
|
||
|
|