mirror of
https://github.com/andrei0x309/yup-live-chrome-extension.git
synced 2024-10-26 16:00:56 +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;
|