Compare commits

...

3 Commits

Author SHA1 Message Date
Robinson 0538b93480
hardcoded project name 2023-08-05 13:49:14 -06:00
Robinson 0462bf600d
Added index.html 2023-08-05 13:48:39 -06:00
Robinson 572f97d58f
updated gitignore 2023-08-05 13:48:24 -06:00
3 changed files with 38 additions and 0 deletions

1
.gitignore vendored
View File

@ -61,6 +61,7 @@ fabric.properties
# From https://github.com/github/gitignore/blob/master/Gradle.gitignore
.gradle
/build/
/frontend/generated/
# Ignore Gradle GUI config
gradle-app.setting

36
frontend/index.html Normal file
View File

@ -0,0 +1,36 @@
<!--
~ Copyright 2023 dorkbox, llc
~
~ Licensed under the Apache License, Version 2.0 (the "License");
~ you may not use this file except in compliance with the License.
~ You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software
~ distributed under the License is distributed on an "AS IS" BASIS,
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<style>
body, #outlet {
height: 100vh;
width: 100%;
margin: 0;
}
</style>
<!-- index.ts is included here automatically (either by the dev server or during the build) -->
</head>
<body>
<!-- This outlet div is where the views are rendered -->
<div id="outlet"></div>
</body>
</html>

View File

@ -13,3 +13,4 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
rootProject.name = "VaadinUndertow"