feat(global): initialize project and framework structure, dockerize

This commit is contained in:
h
2025-09-02 00:03:50 +03:00
parent 3194237f5f
commit 2e9bfc888f
26 changed files with 422 additions and 113 deletions

18
tailwind.config.ts Normal file
View File

@@ -0,0 +1,18 @@
import type { Config } from 'tailwindcss';
import primeui from 'tailwindcss-primeui';
export default {
content: [
'./app/components/**/*.{vue,js,ts}',
'./app/layouts/**/*.vue',
'./app/pages/**/*.vue',
'./app/composables/**/*.{js,ts}',
'./app/plugins/**/*.{js,ts}',
'./app/App.{js,ts,vue}',
'./app/app.vue',
],
theme: {
extend: {},
},
plugins: [primeui],
} satisfies Config;