diff options
author | Daniel Weipert <code@drogueronin.de> | 2021-06-22 00:18:35 +0200 |
---|---|---|
committer | Daniel Weipert <code@drogueronin.de> | 2021-06-22 00:18:35 +0200 |
commit | f6096a18016be63c719d2ce5a27d64363862b0fd (patch) | |
tree | fae30d63ff1ad2903236cab86d61cc4978f3dfe9 /app/index.html |
Initial commit
Diffstat (limited to 'app/index.html')
-rw-r--r-- | app/index.html | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/app/index.html b/app/index.html new file mode 100644 index 0000000..8b7ddc9 --- /dev/null +++ b/app/index.html @@ -0,0 +1,13 @@ +<!DOCTYPE html> +<html> +<head> + <meta charset="UTF-8"> + <meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self'"> + <title>Hello World!</title> + <link rel="stylesheet" href="./build/index.css"> +</head> +<body> +<div id="app"></div> +<script src="./build/index.js"></script> +</body> +</html> |