File size: 294 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 |
export default function Index() {
return (
<p>
To test the CORS route, open the console in a new tab on a different
domain and make a POST / GET / OPTIONS request to <b>/api/cors</b>. Using
a different method from those mentioned will be blocked by CORS
</p>
);
}
|