Replies: 3 comments 15 replies
-
Hey @Sa1ch! 👋🏻 It looks like the issue is from your configuration/setup and not from Transmit. |
Beta Was this translation helpful? Give feedback.
4 replies
-
Unfortunately, I still can't fix this problem. The chat development is at a standstill. |
Beta Was this translation helpful? Give feedback.
2 replies
-
Yes also have the same problem while using it in vue Request
Response
|
Beta Was this translation helpful? Give feedback.
9 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello! I created an embedded chat widget that works through Transmit, and when I connect it to third-party sites, I get a CORS error at the address: /__transmit/subscribe ❌
Although other requests go through fine. For example, this one: /__transmit/events?uid=45596506-16af-41cb-a610-bc4985dad17c✅
I have a CORS configuration:
import { defineConfig } from '@adonisjs/cors';
const corsConfig = defineConfig({
enabled: true,
origin: true,
methods: ['GET', 'HEAD', 'POST', 'PUT', 'DELETE'],
headers: true,
exposeHeaders: [],
credentials: true,
maxAge: 90,
});
export default corsConfig;
What is my problem?
Beta Was this translation helpful? Give feedback.
All reactions