mirror of
https://github.com/strapi/strapi.git
synced 2025-08-03 06:18:37 +00:00
21 lines
899 B
HTML
21 lines
899 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<!-- The first thing in any HTML file should be the charset -->
|
|
<meta charset="utf-8">
|
|
<!-- Make the page mobile compatible -->
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<!-- Allow installing the app to the homescreen -->
|
|
<link rel="manifest" href="manifest.json">
|
|
<meta name="mobile-web-app-capable" content="yes">
|
|
<title>Strapi Admin</title>
|
|
<base href="/admin">
|
|
</head>
|
|
<body>
|
|
<!-- The app hooks into this div -->
|
|
<div id="app"></div>
|
|
<!-- A lot of magic happens in this file. HtmlWebpackPlugin automatically includes all assets (e.g. bundle.js, main.css) with the correct HTML tags, which is why they are missing in this HTML file. Don't add any assets here! (Check out webpackconfig.js if you want to know more) -->
|
|
</body>
|
|
<script type="text/javascript" src="http://localhost:3000/main.js"></script>
|
|
</html>
|