fix: don't redirect to generated path

This commit is contained in:
Daniel Roe 2023-07-06 21:19:01 +01:00
parent d51303cb8b
commit cb109b49b8
1 changed files with 6 additions and 0 deletions

6
plugins/path.ts Normal file
View File

@ -0,0 +1,6 @@
export default defineNuxtPlugin({
order: -40,
setup: (nuxtApp) => {
delete nuxtApp.payload.path
},
})