feat(global): initialize project and framework structure, dockerize
This commit is contained in:
18
tailwind.config.ts
Normal file
18
tailwind.config.ts
Normal 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;
|
||||
Reference in New Issue
Block a user