From 30ac314a74918df9b7080d6391f66c4c3c26abb1 Mon Sep 17 00:00:00 2001 From: Jennie Robinson Faber Date: Tue, 31 Mar 2026 18:18:24 +0100 Subject: [PATCH] Updates! --- .cursorignore | 9 +++++++++ .cursorindexingignore | 9 +++++++++ nuxt.config.ts | 5 ++++- 3 files changed, 22 insertions(+), 1 deletion(-) create mode 100644 .cursorignore create mode 100644 .cursorindexingignore diff --git a/.cursorignore b/.cursorignore new file mode 100644 index 0000000..9d5b640 --- /dev/null +++ b/.cursorignore @@ -0,0 +1,9 @@ +.env* +*.pem +*.key +*.p12 +*.pfx +*.crt +*.cert +credentials.* +secrets.* diff --git a/.cursorindexingignore b/.cursorindexingignore new file mode 100644 index 0000000..9d5b640 --- /dev/null +++ b/.cursorindexingignore @@ -0,0 +1,9 @@ +.env* +*.pem +*.key +*.p12 +*.pfx +*.crt +*.cert +credentials.* +secrets.* diff --git a/nuxt.config.ts b/nuxt.config.ts index 6366961..6d87e6f 100644 --- a/nuxt.config.ts +++ b/nuxt.config.ts @@ -1,7 +1,7 @@ // https://nuxt.com/docs/api/configuration/nuxt-config export default defineNuxtConfig({ compatibilityDate: "2025-07-15", - devtools: { enabled: process.env.NODE_ENV !== 'production' }, + devtools: { enabled: process.env.NODE_ENV !== "production" }, modules: ["@nuxt/eslint", "@nuxt/ui", "@nuxtjs/plausible"], build: { transpile: ["vue-cal"], @@ -11,6 +11,9 @@ export default defineNuxtConfig({ }, css: ["~/assets/css/main.css"], vite: { + optimizeDeps: { + include: ["@plausible-analytics/tracker"], + }, server: { hmr: { port: 24678,