1
0
mirror of https://github.com/actix/examples synced 2024-11-23 22:41:07 +01:00
examples/cors/frontend/index.html

13 lines
297 B
HTML
Raw Normal View History

<!DOCTYPE html>
2023-07-18 23:54:35 +02:00
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>CORS Example</title>
</head>
<body>
2019-03-30 02:46:13 +01:00
<div id="app"></div>
2023-07-18 23:55:19 +02:00
<script type="module" src="/src/main.js"></script>
2023-07-18 23:54:35 +02:00
</body>
2019-03-30 02:46:13 +01:00
</html>