mirror of
https://github.com/socketio/socket.io.git
synced 2026-01-10 23:48:02 -05:00
13 lines
194 B
TypeScript
13 lines
194 B
TypeScript
// https://nuxt.com/docs/api/configuration/nuxt-config
|
|
|
|
export default defineNuxtConfig({
|
|
devtools: {
|
|
enabled: true
|
|
},
|
|
nitro: {
|
|
experimental: {
|
|
websocket: true
|
|
},
|
|
}
|
|
})
|