modified: README.md modified: index.html new file: input.css new file: output.css modified: package-lock.json modified: package.json new file: postcss.config.js modified: script.js new file: tailwind.config.js
9 lines
176 B
JavaScript
9 lines
176 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: ["./index.html", "./script.js"],
|
|
darkMode: 'class',
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
plugins: [],
|
|
} |