From 27ed352453f6b3a4937e94fc55e137600d64f339 Mon Sep 17 00:00:00 2001 From: philipp Date: Wed, 19 Jun 2024 08:15:54 +0200 Subject: [PATCH] include tailwind --- nuxt.config.ts | 5 ++++- public/assets/css/tailwind.css | 3 +++ 2 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 public/assets/css/tailwind.css diff --git a/nuxt.config.ts b/nuxt.config.ts index 413a508..6908567 100644 --- a/nuxt.config.ts +++ b/nuxt.config.ts @@ -10,5 +10,8 @@ export default defineNuxtConfig({ options: { scrollBehaviorType: 'smooth' } - } + }, + css: [ + '~/assets/css/tailwind.css', + ] }) \ No newline at end of file diff --git a/public/assets/css/tailwind.css b/public/assets/css/tailwind.css new file mode 100644 index 0000000..5be59b4 --- /dev/null +++ b/public/assets/css/tailwind.css @@ -0,0 +1,3 @@ +@import 'tailwindcss/base'; +@import 'tailwindcss/components'; +@import 'tailwindcss/utilities'; \ No newline at end of file