404 with stripe plugin

hey all im getting a 404 when trying to get a stripe url:
const { data, error } = await client.subscription.upgrade({
            annual: biAnnual,
            plan: 'basic',
            successUrl: '/dashboard',
            cancelUrl: '/pricing'
        });
        console.log(data, error);
        if (error) console.error(error.message);

/api/auth/subscription/upgrade 404

its also not generating my schema for stripe using the CI tool- the Session table was not created.

using svelte5
Was this page helpful?