You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
const{ hooks }=require('@adonisjs/ignitor');// Import the mix manifest fileconstmanifest=require('../public/mix-manifest');hooks.after.providersBooted(()=>{constView=use('View');// Creating the mix function in edge viewsView.global('mix',function(asset){if(!manifest[`/${asset}`]){return'404-asset-not-found';}returnmanifest[`/${asset}`];})});
Then, restart the server, and you can use in your edge views