mirror of
https://github.com/catdevnull/preciazo.git
synced 2024-11-23 06:36:19 +00:00
13 lines
177 B
JavaScript
13 lines
177 B
JavaScript
|
/** @type {import('tailwindcss').Config}*/
|
||
|
const config = {
|
||
|
content: ['./src/**/*.{html,js,svelte,ts}'],
|
||
|
|
||
|
theme: {
|
||
|
extend: {}
|
||
|
},
|
||
|
|
||
|
plugins: []
|
||
|
};
|
||
|
|
||
|
module.exports = config;
|