mirror of
https://github.com/LukeHagar/vercel.git
synced 2025-12-10 04:22:12 +00:00
Updated the template using `npx degit sveltejs/template my-svelte-project` I also added a `yarn.lock` file so dependencies don't break for future deployments. Related to https://github.com/Samuel-Martineau/generator-svelte/issues/7
19 lines
403 B
HTML
19 lines
403 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset='utf-8'>
|
|
<meta name='viewport' content='width=device-width,initial-scale=1'>
|
|
|
|
<title>Svelte + Node.js API</title>
|
|
|
|
<link rel='icon' type='image/png' href='/favicon.png'>
|
|
<link rel='stylesheet' href='/global.css'>
|
|
<link rel='stylesheet' href='/build/bundle.css'>
|
|
|
|
<script defer src='/build/bundle.js'></script>
|
|
</head>
|
|
|
|
<body>
|
|
</body>
|
|
</html>
|