Add API monorepo
Change-Id: I39aa1707744bb86c4bc9113157bbf815bb3fe33a
This commit is contained in:
parent
b87cff043a
commit
5246efb027
56 changed files with 251 additions and 22 deletions
41
source/ui/src/app/assets/html/index.ejs
Normal file
41
source/ui/src/app/assets/html/index.ejs
Normal file
|
@ -0,0 +1,41 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<link href="https://fonts.googleapis.com/css?family=Ubuntu:400,700&subset=cyrillic-ext" rel="stylesheet">
|
||||
<title>$(AppName)</title>
|
||||
<meta name="robots" content="index,follow">
|
||||
|
||||
<style>
|
||||
body {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
::-webkit-scrollbar {
|
||||
width: 5px;
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-track {
|
||||
background: #ddd;
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-thumb {
|
||||
background: #666;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="app"></div>
|
||||
</body>
|
||||
|
||||
<% if (htmlWebpackPlugin.options.env.websiteId) { %>
|
||||
<script async src="https://wa.romanjaros.dev/script.js"
|
||||
data-website-id="<%= htmlWebpackPlugin.options.env.websiteId %>">
|
||||
</script>
|
||||
<% } %>
|
||||
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue