One time password
TOTP implementation (incomplete. Token is generated, but not verified.)
This commit is contained in:
parent
c8a02fb468
commit
ec1ed9e487
9 changed files with 307 additions and 60 deletions
|
@ -2,9 +2,19 @@ import { defineConfig } from 'vitest/config';
|
|||
import { sveltekit } from '@sveltejs/kit/vite';
|
||||
|
||||
export default defineConfig({
|
||||
plugins: [sveltekit()],
|
||||
plugins: [sveltekit()],
|
||||
|
||||
test: {
|
||||
include: ['src/**/*.{test,spec}.{js,ts}']
|
||||
}
|
||||
server:{
|
||||
port:5555,
|
||||
strictPort:false,
|
||||
},
|
||||
|
||||
preview:{
|
||||
port:5554,
|
||||
strictPort:false,
|
||||
},
|
||||
|
||||
test: {
|
||||
include: ['src/**/*.{test,spec}.{js,ts}']
|
||||
}
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue