@things-factory/operato-hub 6.2.166 → 6.2.167

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/.dockerignore CHANGED
@@ -1,4 +1,13 @@
1
1
  node_modules
2
2
  installer
3
3
  Dockerfile
4
- docker-compose.yml
4
+ logs
5
+ docker-compose.yml
6
+ db.sqlite
7
+ db*.sqlite
8
+ license.json
9
+ attachments
10
+ config.development.js
11
+ config.production.js
12
+ !config/config.development.js
13
+ !config/config.production.js
package/_index.html CHANGED
@@ -1,4 +1,4 @@
1
- <!DOCTYPE html>
1
+ <!doctype html>
2
2
  <html lang="en">
3
3
  <head>
4
4
  <meta charset="utf-8" />
@@ -52,42 +52,13 @@
52
52
  <!-- Performance tip: hint to the browser to start the handshake for the fonts site -->
53
53
  <link rel="preconnect" href="https://fonts.gstatic.com/" crossorigin />
54
54
  <link href="/node_modules/@material-design-icons/font/index.css" rel="stylesheet" />
55
- <style>
56
- body {
57
- margin: 0;
58
- padding: 0;
59
- overflow: hidden;
60
-
61
- overscroll-behavior-y: none;
62
-
63
- /* This is a font-stack that tries to use the system-default sans-serifs first */
64
- font-family: Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
65
- line-height: 1.5;
66
- -webkit-font-smoothing: antialiased;
67
-
68
- accent-color: var(--primary-color);
69
- }
70
- </style>
55
+ <link href="/node_modules/@fontsource/roboto/index.css" rel="stylesheet" />
56
+ <link rel="stylesheet" href="/theme.css" />
71
57
 
72
58
  <!-- Global site tag (gtag.js) - Google Analytics -->
73
59
  <script async src="https://www.googletagmanager.com/gtag/js?id=G-J5CEZDTKSE"></script>
74
- <script>
75
- window.dataLayer = window.dataLayer || []
76
- function gtag() {
77
- dataLayer.push(arguments)
78
- }
79
- gtag('js', new Date())
80
-
81
- gtag('config', 'G-J5CEZDTKSE')
82
- </script>
83
60
 
84
- <script>
85
- if ('serviceWorker' in navigator) {
86
- navigator.serviceWorker.register('/service-worker.js', {
87
- scope: '/'
88
- })
89
- }
90
- </script>
61
+ <script src="/static/index.js" defer></script>
91
62
  </head>
92
63
  <body>
93
64
  <things-app></things-app>