wideangle-nuxt/playground/nuxt.config.ts

18 lines
409 B
TypeScript
Raw Normal View History

2025-01-29 01:01:34 +01:00
// https://nuxt.com/docs/api/configuration/nuxt-config
2023-05-14 15:25:44 +00:00
export default defineNuxtConfig({
2025-01-29 01:01:34 +01:00
devtools: { enabled: true },
compatibilityDate: "2025-01-28",
modules: ['wideangle-nuxt'],
// ssr: false,
2023-09-13 14:19:43 +00:00
runtimeConfig: {
public: {
wideangle: {
2025-01-29 01:01:34 +01:00
siteId: "8D27G3B9ACA01F4241",
domain: "events.wideangle.test",
fingerprint: false,
suppressDnt: true
2023-09-13 14:19:43 +00:00
}
}
2023-05-18 12:33:46 +00:00
}
2025-01-29 01:01:34 +01:00
})