fix assets img path from dev to prod
BIN
src/client/vite/src/assets/img/BUNKERWEB-print-hd-blanc.png
Normal file
|
After Width: | Height: | Size: 48 KiB |
BIN
src/client/vite/src/assets/img/BUNKERWEB-print-hd.png
Normal file
|
After Width: | Height: | Size: 53 KiB |
BIN
src/client/vite/src/assets/img/favicon-white.ico
Normal file
|
After Width: | Height: | Size: 38 KiB |
BIN
src/client/vite/src/assets/img/favicon.ico
Normal file
|
After Width: | Height: | Size: 37 KiB |
BIN
src/client/vite/src/assets/img/logo-bw.png
Normal file
|
After Width: | Height: | Size: 9.5 KiB |
BIN
src/client/vite/src/assets/img/logo-menu-2.png
Normal file
|
After Width: | Height: | Size: 4.5 KiB |
BIN
src/client/vite/src/assets/img/logo-menu.png
Normal file
|
After Width: | Height: | Size: 4.7 KiB |
BIN
src/client/vite/src/assets/img/no_internet.png
Normal file
|
After Width: | Height: | Size: 1.2 KiB |
|
|
@ -1,7 +1,9 @@
|
|||
<script setup>
|
||||
import { onMounted, reactive, ref } from "vue";
|
||||
import logoMenu2 from "@public/img/logo-menu-2.png";
|
||||
|
||||
// Get assets path
|
||||
import logo2 from "@assets/img/logo-menu-2.png";
|
||||
// Change path on PROD removing '/' in order to get the right path
|
||||
const logoMenu2 = logo2.substring(import.meta.env.DEV ? 0 : 1);
|
||||
/**
|
||||
@name Dashboard/Loader.vue
|
||||
@description This component is a loader used to transition between pages.
|
||||
|
|
|
|||
|
|
@ -1,10 +1,15 @@
|
|||
<script setup>
|
||||
import Icons from "@components/Widget/Icons.vue";
|
||||
import { reactive, onMounted, onBeforeMount } from "vue";
|
||||
import { reactive, onBeforeMount } from "vue";
|
||||
import { menuIndex, menuFloatIndex } from "@/utils/tabindex.js";
|
||||
import { useBannerStore } from "@store/global.js";
|
||||
import logoMenu2 from "@public/img/logo-menu-2.png";
|
||||
import logoMenu from "@public/img/logo-menu.png";
|
||||
|
||||
// Get assets path
|
||||
import logo from "@assets/img/logo-menu.png";
|
||||
import logo2 from "@assets/img/logo-menu-2.png";
|
||||
// Change path on PROD removing '/' in order to get the right path
|
||||
const logoMenu = logo.substring(import.meta.env.DEV ? 0 : 1);
|
||||
const logoMenu2 = logo2.substring(import.meta.env.DEV ? 0 : 1);
|
||||
|
||||
/**
|
||||
@name Dashboard/Menu.vue
|
||||
|
|
|
|||
25
src/ui/static/assets/home-409d04c4.js
Normal file
25
src/ui/static/assets/home-4dedb9c1.js
Normal file
25
src/ui/static/assets/home-55d62ea9.js
Normal file
25
src/ui/static/assets/home-9060b7b9.js
Normal file
25
src/ui/static/assets/home-a85457e7.js
Normal file
25
src/ui/static/assets/home-bc58f8dd.js
Normal file
25
src/ui/static/assets/home-cb430cab.js
Normal file
25
src/ui/static/assets/home-d04bd3e4.js
Normal file
25
src/ui/static/assets/home-e3d69c5d.js
Normal file
25
src/ui/static/assets/home-ee122e19.js
Normal file
2
src/ui/templates/home.html
vendored
|
|
@ -7,7 +7,7 @@
|
|||
<link rel="stylesheet" href="css/flag-icons.min.css" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>BunkerWeb | DASHBOARD</title>
|
||||
<script nonce="{{ script_nonce }}" type="module" crossorigin src="assets/home-b002ec3a.js"></script>
|
||||
<script nonce="{{ script_nonce }}" type="module" crossorigin src="assets/home-4dedb9c1.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div class="hidden" data-csrf-token="{{ csrf_token() }}"></div>
|
||||
|
|
|
|||