const getConfig = () => {
const config = {
swipeBackEnabled: false,
animated: true,
};
return config;
}
const app = createApp(App)
.use(IonicVue, getConfig())
.use(router);
I already disabled it on my main.ts but why can I still swipe back ? Thank you in advance. 
