SVV TEAM
SVV TEAM
For those who use **Vite** or **Nuxt3** ` Error with process.env.NODE_DEBUG ` **solutions** ==> 1. Install polyfill using npm or yarn ```js yarn add @esbuild-plugins/node-globals-polyfill ``` 2. Add to your...
https://github.com/intlify/nuxt3/issues/72#issuecomment-1184394295 For nuxt3 i18 from community
@belegisanin Nuxt community create i18 branch for Nuxt3 [https://github.com/nuxt-community/i18n-module/tree/next](https://github.com/nuxt-community/i18n-module/tree/next) packege.json ``` "devDependencies": { "@nuxtjs/i18n": "npm:@nuxtjs/i18n-edge", "nuxt": "^3.0.0-rc.5" }, ``` Im using it, basic function work properly. Prefix works too)) /en/profile...
@CatalinGheorghiu No problem
@CatalinGheorghiu Received same trouble after upgrading (yarn upgrade) But yesterday was new commit on community-i18n, with the last one work perfectly in dev and in production versions. **Try now!**
@Catalin-G With config in [this message](https://github.com/intlify/nuxt3/issues/72#issuecomment-1186945913) - work perfectly I am already have site in production with translations Switcher ``` {{ locale.name }} ``` Maybe trouble with your page /...
Same trouble after upgrade to 14-alpha3 ```php TD::make('updated_at', 'Изменено')->render( fn($row) => $row->updated_at->toDateTimeString() )->filter(TD::FILTER_DATE), TD::make('created_at', 'Создано')->render( fn($row) => $row->created_at->toDateTimeString() )->filter(TD::FILTER_DATE), ```
@hhxsv5 Same trouble without cleaners and with default guard (session) ``` Route::get('/user', function (\Illuminate\Http\Request $request) { return response()->json($request->user()); }); ``` Returns user only for first request after start or reload...
@hhxsv5 @pleaseyang maybe trouble with request user resolver ? **Temp solution** Resolve user on each request (middleware) ``` $request->setUserResolver( fn() => \Illuminate\Support\Facades\Auth::user() ); ``` Something like this work good, but...
@r33drichards We have same trouble Fixed by increasing memory in action yml file ``` - name: Build run: NODE_OPTIONS=--max-old-space-size=4096 npm run build ```