Update gitignore

This commit is contained in:
Ramon Wenger 2018-08-08 14:59:01 +02:00
parent e21ba0a232
commit 93085a11a7
2 changed files with 14 additions and 0 deletions

3
client/.gitignore vendored
View File

@ -12,3 +12,6 @@ yarn-error.log*
*.ntvs*
*.njsproj
*.sln
# Nuxt Build
.nuxt

11
client/app.html Normal file
View File

@ -0,0 +1,11 @@
<!DOCTYPE html>
<html {{ HTML_ATTRS }}>
<head>
<style>h1{color: red;}</style>
{{ HEAD }}
</head>
<body {{ BODY_ATTRS }}>
<h1>Hello world</h1>
{{ APP }}
</body>
</html>