Add tailwindcss, add first page

Signed-off-by: Louis Hollingworth <louis@hollingworth.ch>
This commit is contained in:
Louis Hollingworth 2022-11-13 20:53:51 +00:00
parent db9fa44439
commit 2e98cb39f4
Signed by: lucxjo
GPG key ID: B140F8923EF88DA9
8 changed files with 1265 additions and 8 deletions

17
tailwind.config.ts Normal file
View file

@ -0,0 +1,17 @@
import type { Config } from 'tailwindcss'
export default <Partial<Config>>{
theme: {
},
content: [
`./components/**/*.{vue,js,ts}`,
`./layouts/**/*.vue`,
`./pages/**/*.vue`,
`./composables/**/*.{js,ts}`,
`./plugins/**/*.{js,ts}`,
`./App.{js,ts,vue}`,
`./app.{js,ts,vue}`,
`./Error.{js,ts,vue}`,
`./error.{js,ts,vue}`
],
}