Skip to content

Commit

Permalink
fix(pwa): add a tailwind config to see if that resolves the issue
Browse files Browse the repository at this point in the history
  • Loading branch information
hutchic committed Jul 29, 2024
1 parent 4c6c055 commit 3b4c1cc
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions app/tailwind.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
import type { Config } from 'tailwindcss'

export default <Partial<Config>> {
content: [
'./components/**/*.{js,vue,ts}',
'./layouts/**/*.vue',
'./pages/**/*.vue',
'./plugins/**/*.{js,ts}',
'./nuxt.config.{js,ts}',
'./app.vue'
],
theme: {
extend: {
aspectRatio: {
auto: 'auto',
square: '1 / 1',
video: '16 / 9'
}
}
},
}

0 comments on commit 3b4c1cc

Please sign in to comment.