diff --git a/apps/www/package.json b/apps/www/package.json index 73fae10..bddfc7a 100644 --- a/apps/www/package.json +++ b/apps/www/package.json @@ -44,7 +44,7 @@ }, "devDependencies": { "@luxass/eslint-config": "^4.9.0", - "@nuxt/devtools": "latest", + "@nuxt/devtools": "^1.3.9", "eslint": "^9.7.0", "eslint-plugin-tailwindcss": "^3.17.4", "typescript": "^5.5.3", diff --git a/examples/with-nuxt/app.vue b/examples/with-nuxt/app/app.vue similarity index 100% rename from examples/with-nuxt/app.vue rename to examples/with-nuxt/app/app.vue diff --git a/examples/with-nuxt/assets/css/tailwind.css b/examples/with-nuxt/app/assets/css/tailwind.css similarity index 72% rename from examples/with-nuxt/assets/css/tailwind.css rename to examples/with-nuxt/app/assets/css/tailwind.css index 581cf41..d51401c 100644 --- a/examples/with-nuxt/assets/css/tailwind.css +++ b/examples/with-nuxt/app/assets/css/tailwind.css @@ -8,7 +8,7 @@ html { } * { - @apply dark:outline-white selection:dark:bg-neutral-700 selection:dark:text-white outline-black selection:bg-neutral-200 selection:text-black; + @apply outline-black selection:bg-neutral-200 selection:text-black; } html, @@ -21,7 +21,7 @@ body, } body { - @apply text-neutral-900 bg-neutral-100 dark:text-neutral-300 dark:bg-neutral-900; + @apply text-neutral-900 bg-neutral-100; } #__nuxt { diff --git a/examples/with-nuxt/components/Footer.vue b/examples/with-nuxt/app/components/Footer.vue similarity index 94% rename from examples/with-nuxt/components/Footer.vue rename to examples/with-nuxt/app/components/Footer.vue index a652fd3..013ae72 100644 --- a/examples/with-nuxt/components/Footer.vue +++ b/examples/with-nuxt/app/components/Footer.vue @@ -1,7 +1,7 @@