@signalk/server-admin-ui 2.26.0 → 2.28.0
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/package.json +7 -1
- package/public/.vite/manifest.json +47 -0
- package/public/assets/bootstrap-NX_x-zUe.js +729 -0
- package/public/assets/{index-BeqlM-hl.js → index-BwqHqLAI.js} +2 -2
- package/public/assets/{style-DKgi9hUa.css → style-DRE7MUHO.css} +1 -1
- package/public/index.html +2 -2
- package/vite.config.ts +2 -1
- package/public/assets/bootstrap-BuuKrp9X.js +0 -696
package/public/index.html
CHANGED
|
@@ -13,8 +13,8 @@
|
|
|
13
13
|
|
|
14
14
|
<link rel="shortcut icon" href="img/favicon.ico" />
|
|
15
15
|
<title>Signal K Server</title>
|
|
16
|
-
<script type="module" crossorigin src="./assets/index-
|
|
17
|
-
<link rel="stylesheet" crossorigin href="./assets/style-
|
|
16
|
+
<script type="module" crossorigin src="./assets/index-BwqHqLAI.js"></script>
|
|
17
|
+
<link rel="stylesheet" crossorigin href="./assets/style-DRE7MUHO.css">
|
|
18
18
|
</head>
|
|
19
19
|
<body
|
|
20
20
|
class="app header-fixed sidebar-fixed aside-menu-fixed aside-menu-hidden"
|
package/vite.config.ts
CHANGED
|
@@ -130,7 +130,8 @@ export default defineConfig({
|
|
|
130
130
|
sourcemap: true,
|
|
131
131
|
target: 'es2023',
|
|
132
132
|
assetsInlineLimit: 0, // Prevent inlining assets to allow server-side logo override
|
|
133
|
-
cssCodeSplit: false // Generate single CSS file to ensure it's always loaded
|
|
133
|
+
cssCodeSplit: false, // Generate single CSS file to ensure it's always loaded
|
|
134
|
+
manifest: true // Emit .vite/manifest.json so plugins can resolve hashed asset URLs
|
|
134
135
|
},
|
|
135
136
|
resolve: {
|
|
136
137
|
alias: {
|