The package is currently not allowing SSR apps to be compiled. This is happening due to the SSR trying to compile the VueTurnstile component following line:
let turnstileState = window.turnstile !== undefined ? 'ready' : 'unloaded';
This is happening because the window is being accessed outside the Vue.js defineComponent and the SSR is trying to compile the window object into something, however window cannot be accessed using SSR.
The package is currently not allowing SSR apps to be compiled. This is happening due to the SSR trying to compile the VueTurnstile component following line:
SSR applications cannot access the window object.