This commit is contained in:
Jennie Robinson Faber 2026-03-31 18:18:24 +01:00
parent df2e7e3356
commit 30ac314a74
3 changed files with 22 additions and 1 deletions

9
.cursorignore Normal file
View file

@ -0,0 +1,9 @@
.env*
*.pem
*.key
*.p12
*.pfx
*.crt
*.cert
credentials.*
secrets.*

9
.cursorindexingignore Normal file
View file

@ -0,0 +1,9 @@
.env*
*.pem
*.key
*.p12
*.pfx
*.crt
*.cert
credentials.*
secrets.*

View file

@ -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,