File tree Expand file tree Collapse file tree 3 files changed +1510
-961
lines changed Expand file tree Collapse file tree 3 files changed +1510
-961
lines changed Original file line number Diff line number Diff line change 3838 },
3939 "dependencies" : {
4040 "defu" : " ^6.1.4" ,
41- "laravel-echo" : " ^2.1.6 " ,
41+ "laravel-echo" : " ^2.1.7 " ,
4242 "ofetch" : " ^1.4.1" ,
4343 "pusher-js" : " ^8.4.0"
4444 },
4545 "devDependencies" : {
4646 "@nuxt/devtools" : " ^2.6.2" ,
47- "@nuxt/eslint-config" : " ^1.5.2 " ,
48- "@nuxt/kit" : " ^3.17.6 " ,
47+ "@nuxt/eslint-config" : " ^1.7.0 " ,
48+ "@nuxt/kit" : " ^4.0.1 " ,
4949 "@nuxt/module-builder" : " ^1.0.1" ,
50- "@nuxt/schema" : " ^3.17.6 " ,
50+ "@nuxt/schema" : " ^4.0.1 " ,
5151 "@nuxt/test-utils" : " ^3.19.2" ,
52- "@types/node" : " ^24.0.10 " ,
52+ "@types/node" : " ^24.1.0 " ,
5353 "changelogen" : " ^0.6.2" ,
54- "eslint" : " ^9.30.1 " ,
55- "nuxt" : " ^3.17.6 " ,
54+ "eslint" : " ^9.31.0 " ,
55+ "nuxt" : " ^4.0.1 " ,
5656 "typescript" : " ^5.8.3" ,
5757 "vitest" : " ^3.2.4" ,
5858 "vue-tsc" : " ^2.2.12"
5959 },
60- "packageManager" : " pnpm@10.6.5 +sha512.cdf928fca20832cd59ec53826492b7dc25dc524d4370b6b4adbf65803d32efaa6c1c88147c0ae4e8d579a6c9eec715757b50d4fa35eea179d868eada4ed043af " ,
60+ "packageManager" : " pnpm@10.13.1 +sha512.37ebf1a5c7a30d5fabe0c5df44ee8da4c965ca0c5af3dbab28c3a1681b70a256218d05c81c9c0dcf767ef6b8551eb5b960042b9ed4300c59242336377e01cfad " ,
6161 "pnpm" : {
6262 "onlyBuiltDependencies" : [
63+ " @parcel/watcher" ,
6364 " esbuild" ,
6465 " unrs-resolver"
6566 ]
Original file line number Diff line number Diff line change 1+ import type { NuxtApp } from '#app'
2+ import type { FetchContext } from 'ofetch'
3+ import type { ConsolaInstance } from 'consola'
4+
15export default defineAppConfig ( {
26 echo : {
37 interceptors : {
4- async onRequest ( _app , ctx , logger ) {
8+ async onRequest (
9+ _app : NuxtApp ,
10+ ctx : FetchContext ,
11+ logger : ConsolaInstance
12+ ) : Promise < void > {
513 const tenant = 'random-string'
614
715 ctx . options . headers . set ( 'X-Echo-Tenant' , tenant )
You can’t perform that action at this time.
0 commit comments