31 lines
874 B
HTML
31 lines
874 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset='utf-8'>
|
||
|
<meta name='viewport' content='width=device-width,initial-scale=1'>
|
||
|
|
||
|
<title>Svelte app</title>
|
||
|
|
||
|
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
|
||
|
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,600,700">
|
||
|
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto+Mono">
|
||
|
|
||
|
<link rel='icon' type='image/png' href='/favicon.png'>
|
||
|
<link rel='stylesheet' href='/global.css'>
|
||
|
<link rel='stylesheet' href='/bundle.css'>
|
||
|
|
||
|
<!--
|
||
|
<link rel='stylesheet' href='/materialize/materialize.css'>
|
||
|
<script src="/materialize/materialize.js"></script>
|
||
|
-->
|
||
|
|
||
|
<script>
|
||
|
process = { env: { NODE_ENV: 'production' } };
|
||
|
</script>
|
||
|
<script defer src='/bundle.js'></script>
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
</body>
|
||
|
</html>
|