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

6
plugins/path.ts Normal file
View file

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