mirror of
https://github.com/aljazceru/meshcore-web.git
synced 2025-12-17 00:14:18 +01:00
18 lines
296 B
JavaScript
18 lines
296 B
JavaScript
import formsPlugin from '@tailwindcss/forms';
|
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: [
|
|
"./src/index.html",
|
|
"./src/**/*.{vue,js,ts,jsx,tsx}",
|
|
],
|
|
theme: {
|
|
extend: {
|
|
|
|
},
|
|
},
|
|
plugins: [
|
|
formsPlugin,
|
|
],
|
|
};
|