Docker update for npm cache dir

This commit is contained in:
infidel
2022-12-06 11:20:44 +07:00
parent 9746a2914c
commit 1f514ac187
16 changed files with 511 additions and 270 deletions

View File

@@ -1,24 +1,26 @@
<script>
import { link } from "svelte-routing";
import { link } from "svelte-routing";
// core components
import NotificationDropdown from "components/Dropdowns/NotificationDropdown.svelte";
import UserDropdown from "components/Dropdowns/UserDropdown.svelte";
// core components
import NotificationDropdown from "components/Dropdowns/NotificationDropdown.svelte";
import UserDropdown from "components/Dropdowns/UserDropdown.svelte";
let collapseShow = "hidden";
let collapseShow = "hidden";
export let collapseshow;
function toggleCollapseShow(classes) {
collapseShow = classes;
}
function toggleCollapseShow(classes) {
collapseshow = classes;
}
export let location;
export let location;
</script>
<nav
class="md:left-0 md:block md:fixed md:top-0 md:bottom-0 md:overflow-y-auto md:flex-row md:flex-nowrap md:overflow-hidden shadow-xl bg-white flex flex-wrap items-center justify-between relative md:w-64 z-10 py-4 px-6"
>
<div
class="md:flex-col md:items-stretch md:min-h-full md:flex-nowrap px-0 flex flex-wrap items-center justify-between w-full mx-auto"
class="md:flex-col md:items-stretch md:min-h-full md:flex-nowrap px-0 flex flex-wrap items-center justify-between w-full mx-auto {collapseshow} "
>
<!-- Toggler -->
<button
@@ -221,139 +223,6 @@
</li>
</ul>
<!-- Divider -->
<hr class="my-4 md:min-w-full" />
<!-- Heading -->
<h6
class="md:min-w-full text-blueGray-500 text-xs uppercase font-bold block pt-1 pb-4 no-underline"
>
No Layout Pages
</h6>
<!-- Navigation -->
<ul class="md:flex-col md:min-w-full flex flex-col list-none md:mb-4">
<li class="items-center">
<a
use:link
class="text-blueGray-700 hover:text-blueGray-500 text-xs uppercase py-3 font-bold block"
href="/landing"
>
<i class="fas fa-newspaper text-blueGray-300 mr-2 text-sm"></i>
Landing Page
</a>
</li>
<li class="items-center">
<a
use:link
class="text-blueGray-700 hover:text-blueGray-500 text-xs uppercase py-3 font-bold block"
href="/profile"
>
<i class="fas fa-user-circle text-blueGray-300 mr-2 text-sm"></i>
Profile Page
</a>
</li>
</ul>
<!-- Divider -->
<hr class="my-4 md:min-w-full" />
<!-- Heading -->
<h6
class="md:min-w-full text-blueGray-500 text-xs uppercase font-bold block pt-1 pb-4 no-underline"
>
Documentation
</h6>
<!-- Navigation -->
<ul class="md:flex-col md:min-w-full flex flex-col list-none md:mb-4">
<li class="inline-flex">
<a
href="https://www.creative-tim.com/learning-lab/tailwind/svelte/colors/notus"
target="_blank"
class="text-blueGray-700 hover:text-blueGray-500 text-sm block mb-4 no-underline font-semibold"
>
<i class="fas fa-paint-brush mr-2 text-blueGray-300 text-base"></i>
Styles
</a>
</li>
<li class="inline-flex">
<a
href="https://www.creative-tim.com/learning-lab/tailwind/svelte/alerts/notus"
target="_blank"
class="text-blueGray-700 hover:text-blueGray-500 text-sm block mb-4 no-underline font-semibold"
>
<i class="fab fa-css3-alt mr-2 text-blueGray-300 text-base"></i>
CSS Components
</a>
</li>
<li class="inline-flex">
<a
href="https://www.creative-tim.com/learning-lab/tailwind/angular/overview/notus"
target="_blank"
class="text-blueGray-700 hover:text-blueGray-500 text-sm block mb-4 no-underline font-semibold"
>
<i class="fab fa-angular mr-2 text-blueGray-300 text-base"></i>
Angular
</a>
</li>
<li class="inline-flex">
<a
href="https://www.creative-tim.com/learning-lab/tailwind/js/overview/notus"
target="_blank"
class="text-blueGray-700 hover:text-blueGray-500 text-sm block mb-4 no-underline font-semibold"
>
<i class="fab fa-js-square mr-2 text-blueGray-300 text-base"></i>
Javascript
</a>
</li>
<li class="inline-flex">
<a
href="https://www.creative-tim.com/learning-lab/tailwind/nextjs/overview/notus"
target="_blank"
class="text-blueGray-700 hover:text-blueGray-500 text-sm block mb-4 no-underline font-semibold"
>
<i class="fab fa-react mr-2 text-blueGray-300 text-base"></i>
NextJS
</a>
</li>
<li class="inline-flex">
<a
href="https://www.creative-tim.com/learning-lab/tailwind/react/overview/notus"
target="_blank"
class="text-blueGray-700 hover:text-blueGray-500 text-sm block mb-4 no-underline font-semibold"
>
<i class="fab fa-react mr-2 text-blueGray-300 text-base"></i>
React
</a>
</li>
<li class="inline-flex">
<a
href="https://www.creative-tim.com/learning-lab/tailwind/svelte/overview/notus"
target="_blank"
class="text-blueGray-700 hover:text-blueGray-500 text-sm block mb-4 no-underline font-semibold"
>
<i class="fas fa-link mr-2 text-blueGray-300 text-base"></i>
Svelte
</a>
</li>
<li class="inline-flex">
<a
href="https://www.creative-tim.com/learning-lab/tailwind/vue/overview/notus"
target="_blank"
class="text-blueGray-700 hover:text-blueGray-500 text-sm block mb-4 no-underline font-semibold"
>
<i class="fab fa-vuejs mr-2 text-blueGray-300 text-base"></i>
VueJS
</a>
</li>
</ul>
</div>
</div>
</nav>