andig
Results
2
comments of
andig
Hmmm... use CleanWebpackPlugin on one of hooks + https://nuxtjs.org/docs/2.x/configuration-glossary/configuration-build#filenames?
Simple add: ``` { router: { extendRoutes(routes, resolve) { routes.forEach((route) => { route.path = '/admin' + route.path; }); return routes; } } } ```