mirror of
https://github.com/wah-su/wah-su.github.io.git
synced 2025-04-05 15:54:40 +00:00
13 lines
251 B
JavaScript
13 lines
251 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: ["./index.html", "./services.html", "./privacy.html", "./static/js/**/*.js"],
|
|
theme: {
|
|
container: {
|
|
center: true,
|
|
},
|
|
extend: {
|
|
},
|
|
},
|
|
plugins: [],
|
|
}
|
|
|