mirror of
https://github.com/CompeyDev/seal.devcomp.xyz.git
synced 2024-12-13 05:20:41 +00:00
15 lines
312 B
JavaScript
15 lines
312 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
purge: {
|
|
mode: "all",
|
|
content: [
|
|
"./src/**/*.rs",
|
|
"./src/**/*.html",
|
|
"./public/index.html",
|
|
"./styles/*.css",
|
|
],
|
|
},
|
|
theme: {},
|
|
variants: {},
|
|
plugins: [],
|
|
};
|