1
0
forked from poc/pds

initial commit

This commit is contained in:
IOT Dev
2025-03-19 16:07:21 +05:30
commit b5435afd5d
58 changed files with 10282 additions and 0 deletions

20
tailwind.config.js Normal file
View File

@@ -0,0 +1,20 @@
import defaultTheme from 'tailwindcss/defaultTheme';
/** @type {import('tailwindcss').Config} */
export default {
content: [
'./vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php',
'./storage/framework/views/*.php',
'./resources/**/*.blade.php',
'./resources/**/*.js',
'./resources/**/*.vue',
],
theme: {
extend: {
fontFamily: {
sans: ['Figtree', ...defaultTheme.fontFamily.sans],
},
},
},
plugins: [],
};