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