10 lines
189 B
JavaScript
10 lines
189 B
JavaScript
|
/** @type {import('tailwindcss').Config} */
|
||
|
module.exports = {
|
||
|
mode: "all",
|
||
|
content: ["./src/**/*.{rs,html,css}", "./dist/**/*.html"],
|
||
|
theme: {
|
||
|
extend: {},
|
||
|
},
|
||
|
plugins: [],
|
||
|
};
|