mirror of
https://github.com/andrei0x309/yup-live-chrome-extension.git
synced 2024-11-09 18:10:57 +00:00
13 lines
185 B
JavaScript
13 lines
185 B
JavaScript
/** @type {import('tailwindcss').Config}*/
|
|
const config = {
|
|
content: ["./src/**/*.{html,js,svelte,ts}"],
|
|
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
|
|
plugins: [],
|
|
};
|
|
|
|
module.exports = config;
|