EdgeJS @dump is missing targeted @stack('dumper') #4844
-
In a new AdonisJS Web starter kit project, if you add a It looks like the targeted EdgeJS Stack for the dumper scripts & styles is missing, if you add a stack called "dumper" the scripts & styles get added and everything works. <head>
@vite(['resources/css/app.css', 'resources/js/app.js'])
@stack('dumper') {{-- 👈 adding this fixes missing scripts & styles --}}
</head>
<body class="min-h-screen w-screen font-sans">
@dump(request)
{{-- ... --}}
</body> I'm unsure whether this is an issue and the Absolutely love the dump & die & dump additions by the way! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
|
Beta Was this translation helpful? Give feedback.
@stack('dumper')
should be added to docs and the starter kits both.