12 lines
247 B
TypeScript
12 lines
247 B
TypeScript
// https://nuxt.com/docs/api/configuration/nuxt-config
|
|
export default defineNuxtConfig({
|
|
compatibilityDate: '2025-07-15',
|
|
devtools: { enabled: true },
|
|
ssr: false,
|
|
vite: {
|
|
optimizeDeps: {
|
|
include: ['yjs', 'y-webrtc']
|
|
}
|
|
}
|
|
})
|