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