authentication implementation

This commit is contained in:
HAM!DREZA
2024-05-27 15:13:45 +03:30
parent a984a3937e
commit 021360e364
38 changed files with 1083 additions and 2995 deletions
+18
View File
@@ -0,0 +1,18 @@
export default defineEventHandler(async (event) => {
const body = await readBody(event);
const { public: { apiBase } } = useRuntimeConfig();
try {
const data = await $fetch(`${apiBase}/auth/login`, {
method: 'POST',
body,
headers: {
'Accept': 'application/json',
}
});
return data;
} catch (err) {
console.log(err.data);
return err
}
})