mirror of
https://github.com/maplibre/martin.git
synced 2024-12-19 04:41:46 +03:00
6d17c1e2b6
`npm install` is having some weird issues, while `yarn` seem to work well. Also, bumped almost all dependencies.
43 lines
1.8 KiB
HTML
43 lines
1.8 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
<link rel="icon" type="image/x-icon" href="/favicon.ico">
|
|
<meta property="og:url" content="https://maplibre.org" />
|
|
<meta property="og:title" content="Martin — vector tiles server" />
|
|
<meta property="og:description" content="Vector Tiles from Large Databases on the Fly" />
|
|
<meta property="og:image" content="%PUBLIC_URL%/martin.png" />
|
|
<meta name="msapplication-TileColor" content="#ffffff">
|
|
<meta name="msapplication-TileImage" content="%PUBLIC_URL%/favicons/ms-icon-144x144.png">
|
|
<meta name="theme-color" content="#ffffff">
|
|
<!--
|
|
Notice the use of %PUBLIC_URL% in the tags above.
|
|
It will be replaced with the URL of the `public` folder during the build.
|
|
Only files inside the `public` folder can be referenced from the HTML.
|
|
|
|
Unlike "/favicon.ico" or "favicon.ico", "%PUBLIC_URL%/favicon.ico" will
|
|
work correctly both with client-side routing and a non-root public URL.
|
|
Learn how to configure a non-root public URL by running `yarn run build`.
|
|
-->
|
|
<title>Martin — vector tiles server</title>
|
|
</head>
|
|
<body>
|
|
<noscript>
|
|
You need to enable JavaScript to run this app.
|
|
</noscript>
|
|
<div id="root"></div>
|
|
<script type="module" src="src/index.tsx"></script>
|
|
<!--
|
|
This HTML file is a template.
|
|
If you open it directly in the browser, you will see an empty page.
|
|
|
|
You can add webfonts, meta tags, or analytics to this file.
|
|
The build step will place the bundled scripts into the <body> tag.
|
|
|
|
To begin the development, run `yarn start` or `yarn start`.
|
|
To create a production bundle, use `yarn run build` or `yarn build`.
|
|
-->
|
|
</body>
|
|
</html>
|