parent
a8f198afec
commit
900b8ccdb1
@ -1,20 +1,17 @@
|
|||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
|
|
||||||
<head>
|
<head>
|
||||||
<meta charset='utf-8'>
|
<meta charset="utf-8" />
|
||||||
<meta name='viewport' content='width=device-width,initial-scale=1'>
|
<meta name="viewport" content="width=device-width,initial-scale=1" />
|
||||||
|
|
||||||
<title>Svelte app</title>
|
<title>Svelte app</title>
|
||||||
|
|
||||||
<link rel='icon' type='image/png' href='favicon.png'>
|
<link rel="icon" type="image/png" href="favicon.png" />
|
||||||
<link rel='stylesheet' href='global.css'>
|
<link rel="stylesheet" href="global.css" />
|
||||||
<link rel='stylesheet' href='build/bundle.css'>
|
<link rel="stylesheet" href="build/bundle.css" />
|
||||||
|
|
||||||
<script defer src='build/bundle.js'></script>
|
<script defer src="build/bundle.js"></script>
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body></body>
|
||||||
</body>
|
|
||||||
|
|
||||||
</html>
|
</html>
|
@ -1,8 +1,8 @@
|
|||||||
import App from './App.svelte';
|
import App from "./App.svelte";
|
||||||
|
|
||||||
const app = new App({
|
const app = new App({
|
||||||
target: document.body,
|
target: document.body,
|
||||||
props: {}
|
props: {},
|
||||||
});
|
});
|
||||||
|
|
||||||
export default app;
|
export default app;
|
||||||
|
Loading…
Reference in new issue