From 3b4c1cca81f114b6c33266bc379e0f5db9fa0913 Mon Sep 17 00:00:00 2001 From: Colin Hutchinson Date: Mon, 29 Jul 2024 09:39:26 -0400 Subject: [PATCH] fix(pwa): add a tailwind config to see if that resolves the issue --- app/tailwind.config.ts | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 app/tailwind.config.ts diff --git a/app/tailwind.config.ts b/app/tailwind.config.ts new file mode 100644 index 0000000..f9da636 --- /dev/null +++ b/app/tailwind.config.ts @@ -0,0 +1,21 @@ +import type { Config } from 'tailwindcss' + +export default > { + 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' + } + } + }, +}