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' + } + } + }, +}