bsanchez-grupo-active

Results 1 comments of bsanchez-grupo-active

Hi again, finally I was able to fix it, simply adding `https://tauri.localhost` to the accepted CORS list. In `/server/index.ts`: ``` server.register(cors, { origin: [ 'http://localhost:1420', 'https://tauri.localhost', 'tauri://localhost' ] }) ```