13 lines
326 B
TypeScript
13 lines
326 B
TypeScript
// https://nuxt.com/docs/api/configuration/nuxt-config
|
|
export default defineNuxtConfig({
|
|
compatibilityDate: "2025-07-15",
|
|
devtools: { enabled: false },
|
|
modules: ["@nuxt/eslint", "nuxt-maplibre", "@pinia/nuxt"],
|
|
vite: {
|
|
optimizeDeps: {
|
|
// noDiscovery: true,
|
|
// include: ["maplibre-gl"],
|
|
},
|
|
},
|
|
});
|