19 lines
633 B
HTML
19 lines
633 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>PVP Pokemon Explorer</title>
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<link href="/favicon.ico" rel="shortcut icon" type="image/x-icon" />
|
|
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Press+Start+2P" />
|
|
<link rel="stylesheet" href="/dist/global.css" />
|
|
<link rel="stylesheet" href="/dist/app.css" />
|
|
</head>
|
|
<body>
|
|
<div id="pokemon-mount"></div>
|
|
<script src="/dist/global-bundle.js"></script>
|
|
<script src="/dist/main-bundle.js"></script>
|
|
</body>
|
|
</html>
|