-
-
Notifications
You must be signed in to change notification settings - Fork 75
feat: vite package basic setup #184
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,58 @@ | ||
| { | ||
| "name": "@vitejs/devtools-vite", | ||
| "type": "module", | ||
| "version": "0.0.0-alpha.32", | ||
| "private": true, | ||
| "description": "DevTools for Vite (work in progress)", | ||
| "author": "VoidZero Inc.", | ||
| "license": "MIT", | ||
| "homepage": "https://github.com/vitejs/devtools#readme", | ||
| "repository": { | ||
| "directory": "packages/vite", | ||
| "type": "git", | ||
| "url": "git+https://github.com/vitejs/devtools.git" | ||
| }, | ||
| "bugs": "https://github.com/vitejs/devtools/issues", | ||
| "keywords": [ | ||
| "vite", | ||
| "devtools" | ||
| ], | ||
| "sideEffects": false, | ||
| "exports": { | ||
| ".": "./dist/index.mjs", | ||
| "./dirs": "./dist/dirs.mjs", | ||
| "./package.json": "./package.json" | ||
| }, | ||
| "types": "./dist/index.d.mts", | ||
| "files": [ | ||
| "dist" | ||
| ], | ||
| "scripts": { | ||
| "build": "pnpm dev:prepare && ROLLDOWN_OPTIONS_VALIDATION=loose nuxi build src && tsdown", | ||
| "build:debug": "NUXT_DEBUG_BUILD=true pnpm run build", | ||
| "dev": "DEBUG='vite:devtools:*' ROLLDOWN_OPTIONS_VALIDATION=loose nuxi dev src", | ||
| "dev:prepare": "nuxi prepare src", | ||
| "prepack": "pnpm build" | ||
| }, | ||
| "dependencies": { | ||
| "@floating-ui/dom": "catalog:frontend", | ||
| "@vitejs/devtools-kit": "workspace:*", | ||
| "@vitejs/devtools-rpc": "workspace:*", | ||
| "birpc": "catalog:deps", | ||
| "get-port-please": "catalog:deps", | ||
| "h3": "catalog:deps", | ||
| "ohash": "catalog:deps", | ||
| "pathe": "catalog:deps", | ||
| "sirv": "catalog:deps", | ||
| "structured-clone-es": "catalog:deps", | ||
| "ws": "catalog:deps" | ||
| }, | ||
| "devDependencies": { | ||
| "@unocss/nuxt": "catalog:build", | ||
| "@vueuse/core": "catalog:frontend", | ||
| "@vueuse/nuxt": "catalog:build", | ||
| "floating-vue": "catalog:frontend", | ||
| "tsdown": "catalog:build", | ||
| "unocss": "catalog:build" | ||
| } | ||
| } | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,21 @@ | ||
| <script setup lang="ts"> | ||
| import { useHead } from '#app/composables/head' | ||
| import './styles/global.css' | ||
| import '@vitejs/devtools-ui/composables/dark' | ||
|
|
||
| useHead({ | ||
| title: 'Vite DevTools', | ||
| }) | ||
|
|
||
| const connected = false | ||
| </script> | ||
|
|
||
| <template> | ||
| <VisualLoading | ||
| v-if="!connected" | ||
| text="Coming Soon..." | ||
| /> | ||
| <div v-else h-vh> | ||
| <NuxtPage /> | ||
| </div> | ||
webfansplz marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| </template> | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,17 @@ | ||
| <script setup lang="ts"> | ||
| import VisualLogoBanner from './LogoBanner.vue' | ||
|
|
||
| const props = defineProps<{ | ||
| text?: string | ||
| }>() | ||
| </script> | ||
|
|
||
| <template> | ||
| <div p10 h-full flex="~ col" items-center justify-center> | ||
| <VisualLogoBanner /> | ||
| <div flex="~ gap-2" animate-pulse mt--4 items-center justify-center> | ||
| <div i-svg-spinners-8-dots-rotate /> | ||
| <span>{{ props.text ?? 'Loading...' }}</span> | ||
| </div> | ||
| </div> | ||
| </template> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,147 @@ | ||
| <script setup lang="ts"> | ||
| import { isDark } from '@vitejs/devtools-ui/composables/dark' | ||
| import { computed } from 'vue' | ||
|
|
||
| const theme = computed(() => isDark.value ? 'white' : 'black') | ||
| </script> | ||
|
|
||
| <template> | ||
| <div class="flex gap-2 group" w140 p4 relative> | ||
| <div op10 group-hover="op100" transition duration-800 class="absolute -bottom-[10px] -left-[20px] w-[80px] h-[80px] bg-linear-to-b from-[#61d9ff] to-transparent blur-[30px]" /> | ||
| <div op10 group-hover="op100" transition duration-800 class="absolute -top-[10px] left-300px w-[80px] h-[80px] bg-[linear-gradient(270deg,_#7a23a1,_#715ebde6_60%,_#715ebde6,_#bd34fe00)] blur-[30px]" /> | ||
| <svg width="979" height="89" viewBox="0 0 979 89" fill="none" xmlns="http://www.w3.org/2000/svg" pointer-events-none> | ||
| <path d="M328.999 86.823C327.739 88.427 325.161 87.535 325.161 85.4973V65.9264C325.161 63.5532 323.238 61.63 320.865 61.63H299.256C297.509 61.63 296.49 59.6537 297.509 58.2339L311.715 38.3438C313.749 35.5001 311.715 31.5474 308.217 31.5474H282.067C280.319 31.5474 279.3 29.5711 280.319 28.1512L298.736 2.36497C299.141 1.80031 299.792 1.46478 300.484 1.46478H355.366C357.113 1.46478 358.132 3.4411 357.114 4.86094L342.907 24.751C340.873 27.5948 342.907 31.5474 346.405 31.5474H368.014C369.806 31.5474 370.813 33.6137 369.704 35.0254L329.003 86.8271L328.999 86.823Z" fill="#9135FF" /> | ||
| <mask id="mask0_logo" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="279" y="1" width="91" height="87"> | ||
| <path d="M328.801 86.8227C327.541 88.4266 324.963 87.5346 324.963 85.4969V65.9261C324.963 63.5528 323.04 61.6297 320.666 61.6297H299.058C297.311 61.6297 296.292 59.6534 297.311 58.2335L311.517 38.3435C313.551 35.4997 311.517 31.5471 308.019 31.5471H281.868C280.121 31.5471 279.102 29.5708 280.121 28.1509L298.538 2.36463C298.943 1.79997 299.594 1.46445 300.285 1.46445H355.168C356.915 1.46445 357.934 3.44077 356.915 4.86061L342.709 24.7507C340.675 27.5944 342.709 31.5471 346.207 31.5471H367.816C369.608 31.5471 370.615 33.6134 369.506 35.0251L328.805 86.8268L328.801 86.8227Z" fill="black" /> | ||
| </mask> | ||
| <g mask="url(#mask0_logo)"> | ||
| <g filter="url(#filter0_f_logo)"> | ||
| <ellipse cx="10.4623" cy="27.9302" rx="10.4623" ry="27.9302" transform="matrix(0.00324134 0.999995 0.999995 -0.00324134 271.227 61.3274)" fill="#EEE6FF" /> | ||
| </g> | ||
| <g filter="url(#filter1_f_logo)"> | ||
| <ellipse cx="19.7534" cy="56.7016" rx="19.7534" ry="56.7016" transform="matrix(0.00324134 0.999995 0.999995 -0.00324134 205.013 16.4374)" fill="#EEE6FF" /> | ||
| </g> | ||
| <g filter="url(#filter2_f_logo)"> | ||
| <ellipse cx="10.4623" cy="57.9085" rx="10.4623" ry="57.9085" transform="matrix(0.00324134 0.999995 0.999995 -0.00324134 202.85 22.9685)" fill="#8900FF" /> | ||
| </g> | ||
| <g filter="url(#filter3_f_logo)"> | ||
| <ellipse cx="10.4623" cy="58.1208" rx="10.4623" ry="58.1208" transform="matrix(0.00324134 0.999995 0.999995 -0.00324134 211.578 57.1575)" fill="#8900FF" /> | ||
| </g> | ||
| <g filter="url(#filter4_f_logo)"> | ||
| <ellipse cx="10.4623" cy="58.1208" rx="10.4623" ry="58.1208" transform="matrix(0.00324134 0.999995 0.999995 -0.00324134 214.489 59.3398)" fill="#8900FF" /> | ||
| </g> | ||
| <g filter="url(#filter5_f_logo)"> | ||
| <ellipse cx="26.7282" cy="41.937" rx="26.7282" ry="41.937" transform="matrix(0.0584509 -0.99829 -0.99829 -0.0584509 420.939 52.4903)" fill="#EEE6FF" /> | ||
| </g> | ||
| <g filter="url(#filter6_f_logo)"> | ||
| <ellipse cx="6.59178" cy="40.8401" rx="6.59178" ry="40.8401" transform="matrix(-0.0172986 -0.99985 -0.99985 0.0172986 423.684 35.7737)" fill="#8900FF" /> | ||
| </g> | ||
| <g filter="url(#filter7_f_logo)"> | ||
| <ellipse cx="6.59178" cy="40.8401" rx="6.59178" ry="40.8401" transform="matrix(-0.0172986 -0.99985 -0.99985 0.0172986 423.684 35.7737)" fill="#8900FF" /> | ||
| </g> | ||
| <g filter="url(#filter8_f_logo)"> | ||
| <ellipse cx="280.451" cy="18.5056" rx="8.37029" ry="55.2889" transform="rotate(39.5103 280.451 18.5056)" fill="#8900FF" /> | ||
| </g> | ||
| <g filter="url(#filter9_f_logo)"> | ||
| <ellipse cx="369.984" cy="-10.1065" rx="8.37029" ry="55.2889" transform="rotate(37.8923 369.984 -10.1065)" fill="#8900FF" /> | ||
| </g> | ||
| <g filter="url(#filter10_f_logo)"> | ||
| <ellipse cx="358.377" cy="13.4947" rx="11.3426" ry="18.3586" transform="rotate(37.8923 358.377 13.4947)" fill="#00C2FF" /> | ||
| </g> | ||
| <g filter="url(#filter11_f_logo)"> | ||
| <ellipse cx="276.147" cy="74.2747" rx="8.37029" ry="55.2889" transform="rotate(37.8923 276.147 74.2747)" fill="#8900FF" /> | ||
| </g> | ||
| <g filter="url(#filter12_f_logo)"> | ||
| <ellipse cx="276.147" cy="74.2747" rx="8.37029" ry="55.2889" transform="rotate(37.8923 276.147 74.2747)" fill="#8900FF" /> | ||
| </g> | ||
| <g filter="url(#filter13_f_logo)"> | ||
| <ellipse cx="347.434" cy="58.2714" rx="8.37029" ry="55.2889" transform="rotate(37.8923 347.434 58.2714)" fill="#8900FF" /> | ||
| </g> | ||
| <g filter="url(#filter14_f_logo)"> | ||
| <ellipse cx="352.689" cy="63.0069" rx="11.3426" ry="29.0568" transform="rotate(37.8923 352.689 63.0069)" fill="#00C2FF" /> | ||
| </g> | ||
| </g> | ||
| <path d="M265.911 0C248.439 25.0088 248.337 63.7742 265.911 88.8731H277.716C260.146 63.7742 260.248 25.0088 277.716 0H265.911Z" :fill="theme" /> | ||
| <path d="M383.972 9.15527e-05H372.167C389.639 25.0089 389.741 63.7743 372.167 88.8732H383.972C401.542 63.7743 401.44 25.0089 383.972 9.15527e-05Z" :fill="theme" /> | ||
| <path d="M423.64 75V19H458.84C478.28 19 489.4 27.88 489.4 47C489.4 66.2 478.2 75 458.76 75H423.64ZM469.72 47C469.72 36.52 465.24 32.6 456.12 32.6H442.84V61.4H456.12C465.24 61.4 469.72 57.48 469.72 47ZM499.187 75V19H554.467V32.6H518.387V40.12H553.907V53.32H518.387V61.4H555.507V75H499.187ZM579.751 19L594.551 59.32L609.111 19H629.031L606.951 75H581.351L559.271 19H579.751ZM653.236 75V32.76H631.716V19H693.956V32.76H672.436V75H653.236ZM731.745 75.96C708.145 75.96 695.825 66.04 695.825 47C695.825 27.96 708.145 18.04 731.745 18.04C755.345 18.04 767.745 27.96 767.745 47C767.745 66.04 755.345 75.96 731.745 75.96ZM731.745 62.12C742.865 62.12 748.065 57.4 748.065 47C748.065 36.52 742.865 31.8 731.745 31.8C720.625 31.8 715.425 36.52 715.425 47C715.425 57.4 720.625 62.12 731.745 62.12ZM809.948 75.96C786.348 75.96 774.028 66.04 774.028 47C774.028 27.96 786.348 18.04 809.948 18.04C833.548 18.04 845.948 27.96 845.948 47C845.948 66.04 833.548 75.96 809.948 75.96ZM809.948 62.12C821.068 62.12 826.268 57.4 826.268 47C826.268 36.52 821.068 31.8 809.948 31.8C798.828 31.8 793.628 36.52 793.628 47C793.628 57.4 798.828 62.12 809.948 62.12ZM855.671 75V19H874.871V61H908.391V75H855.671ZM944.226 75.96C921.346 75.96 911.666 70.04 911.666 56.28V56.2H931.106V56.28C931.106 60.92 934.226 63.4 944.226 63.4C954.546 63.4 956.946 61.48 956.946 58.52C956.946 55.88 955.186 54.68 951.346 54.36L935.026 53.08C917.746 51.72 912.466 46.44 912.466 36.36C912.466 24.2 923.026 18.04 944.546 18.04C966.546 18.04 975.426 23.72 975.426 36.84V37H956.306V36.84C956.306 32.2 953.426 30.44 944.226 30.44C934.546 30.44 931.586 32.2 931.586 35.32C931.586 38.04 933.746 39.08 938.786 39.48L954.946 40.68C970.146 41.8 976.386 46.68 976.386 57.16C976.386 69.24 967.346 75.96 944.226 75.96Z" :fill="theme" /> | ||
| <path d="M20.72 19L35.52 59.32L50.08 19H70L47.92 75H22.32L0.24 19H20.72ZM76.64 75V19H95.84V75H76.64ZM124.361 75V32.76H102.841V19H165.081V32.76H143.561V75H124.361ZM172.109 75V19H227.389V32.6H191.309V40.12H226.829V53.32H191.309V61.4H228.429V75H172.109Z" :fill="theme" /> | ||
| <defs> | ||
| <filter id="filter0_f_logo" x="242.164" y="32.1395" width="114.054" height="79.1192" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> | ||
| <feFlood flood-opacity="0" result="BackgroundImageFix" /> | ||
| <feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape" /> | ||
| <feGaussianBlur stdDeviation="14.5485" result="effect1_foregroundBlur_logo" /> | ||
| </filter> | ||
| <filter id="filter1_f_logo" x="175.98" y="-12.8443" width="171.597" height="97.7023" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> | ||
| <feFlood flood-opacity="0" result="BackgroundImageFix" /> | ||
| <feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape" /> | ||
| <feGaussianBlur stdDeviation="14.5485" result="effect1_foregroundBlur_logo" /> | ||
| </filter> | ||
| <filter id="filter2_f_logo" x="185.426" y="5.32093" width="150.733" height="55.8442" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> | ||
| <feFlood flood-opacity="0" result="BackgroundImageFix" /> | ||
| <feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape" /> | ||
| <feGaussianBlur stdDeviation="8.72909" result="effect1_foregroundBlur_logo" /> | ||
| </filter> | ||
| <filter id="filter3_f_logo" x="194.154" y="39.5092" width="151.157" height="55.8443" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> | ||
| <feFlood flood-opacity="0" result="BackgroundImageFix" /> | ||
| <feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape" /> | ||
| <feGaussianBlur stdDeviation="8.72909" result="effect1_foregroundBlur_logo" /> | ||
| </filter> | ||
| <filter id="filter4_f_logo" x="197.064" y="41.6914" width="151.157" height="55.8443" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> | ||
| <feFlood flood-opacity="0" result="BackgroundImageFix" /> | ||
| <feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape" /> | ||
| <feGaussianBlur stdDeviation="8.72909" result="effect1_foregroundBlur_logo" /> | ||
| </filter> | ||
| <filter id="filter5_f_logo" x="309.644" y="-32.5371" width="141.984" height="111.787" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> | ||
| <feFlood flood-opacity="0" result="BackgroundImageFix" /> | ||
| <feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape" /> | ||
| <feGaussianBlur stdDeviation="14.5485" result="effect1_foregroundBlur_logo" /> | ||
| </filter> | ||
| <filter id="filter6_f_logo" x="324.444" y="5.80213" width="116.585" height="48.1746" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> | ||
| <feFlood flood-opacity="0" result="BackgroundImageFix" /> | ||
| <feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape" /> | ||
| <feGaussianBlur stdDeviation="8.72909" result="effect1_foregroundBlur_logo" /> | ||
| </filter> | ||
| <filter id="filter7_f_logo" x="324.444" y="5.80213" width="116.585" height="48.1746" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> | ||
| <feFlood flood-opacity="0" result="BackgroundImageFix" /> | ||
| <feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape" /> | ||
| <feGaussianBlur stdDeviation="8.72909" result="effect1_foregroundBlur_logo" /> | ||
| </filter> | ||
| <filter id="filter8_f_logo" x="227.223" y="-41.9441" width="106.456" height="120.899" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> | ||
| <feFlood flood-opacity="0" result="BackgroundImageFix" /> | ||
| <feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape" /> | ||
| <feGaussianBlur stdDeviation="8.72909" result="effect1_foregroundBlur_logo" /> | ||
| </filter> | ||
| <filter id="filter9_f_logo" x="317.926" y="-71.5028" width="104.117" height="122.793" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> | ||
| <feFlood flood-opacity="0" result="BackgroundImageFix" /> | ||
| <feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape" /> | ||
| <feGaussianBlur stdDeviation="8.72909" result="effect1_foregroundBlur_logo" /> | ||
| </filter> | ||
| <filter id="filter10_f_logo" x="326.522" y="-20.0431" width="63.7106" height="67.0755" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> | ||
| <feFlood flood-opacity="0" result="BackgroundImageFix" /> | ||
| <feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape" /> | ||
| <feGaussianBlur stdDeviation="8.72909" result="effect1_foregroundBlur_logo" /> | ||
| </filter> | ||
| <filter id="filter11_f_logo" x="224.088" y="12.8784" width="104.117" height="122.793" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> | ||
| <feFlood flood-opacity="0" result="BackgroundImageFix" /> | ||
| <feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape" /> | ||
| <feGaussianBlur stdDeviation="8.72909" result="effect1_foregroundBlur_logo" /> | ||
| </filter> | ||
| <filter id="filter12_f_logo" x="224.088" y="12.8784" width="104.117" height="122.793" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> | ||
| <feFlood flood-opacity="0" result="BackgroundImageFix" /> | ||
| <feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape" /> | ||
| <feGaussianBlur stdDeviation="8.72909" result="effect1_foregroundBlur_logo" /> | ||
| </filter> | ||
| <filter id="filter13_f_logo" x="295.376" y="-3.12496" width="104.117" height="122.793" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> | ||
| <feFlood flood-opacity="0" result="BackgroundImageFix" /> | ||
| <feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape" /> | ||
| <feGaussianBlur stdDeviation="8.72909" result="effect1_foregroundBlur_logo" /> | ||
| </filter> | ||
| <filter id="filter14_f_logo" x="315.262" y="21.5769" width="74.8554" height="82.8601" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> | ||
| <feFlood flood-opacity="0" result="BackgroundImageFix" /> | ||
| <feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape" /> | ||
| <feGaussianBlur stdDeviation="8.72909" result="effect1_foregroundBlur_logo" /> | ||
| </filter> | ||
| </defs> | ||
| </svg> | ||
| </div> | ||
| </template> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| <template> | ||
| <div p10 flex="~ col" items-center justify-center> | ||
| <h1 text-2xl font-bold> | ||
| Vite DevTools | ||
| </h1> | ||
| </div> | ||
| </template> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,53 @@ | ||
| html, body , #__nuxt{ | ||
| height: 100vh; | ||
| margin: 0; | ||
| padding: 0; | ||
| } | ||
|
|
||
| .bg-dots { | ||
| background-image: url('/dot-grid-light.png'); | ||
| background-size: 50px; | ||
| background-repeat: repeat; | ||
| } | ||
|
|
||
| .dark .bg-dots, | ||
| .bg-dots.dark { | ||
| color-scheme: dark; | ||
| background-color: black; | ||
| background-image: url('/dot-grid-dark.png'); | ||
| } | ||
|
|
||
| html { | ||
| --uno: bg-base font-sans; | ||
| } | ||
| body { | ||
| --uno: color-base; | ||
| } | ||
|
|
||
| /* For Scrollbar */ | ||
| ::-webkit-scrollbar { | ||
| width: 6px; | ||
| } | ||
|
|
||
| ::-webkit-scrollbar:horizontal { | ||
| height: 6px; | ||
| } | ||
|
|
||
| ::-webkit-scrollbar-corner { | ||
| background: transparent; | ||
| } | ||
|
|
||
| ::-webkit-scrollbar-thumb { | ||
| background-color: #8884; | ||
| transition: background 0.2s ease; | ||
| border-radius: 1px; | ||
| } | ||
|
|
||
| ::-webkit-scrollbar-thumb:hover { | ||
| background-color: #8885; | ||
| } | ||
|
|
||
| ::-webkit-scrollbar-track { | ||
| border-radius: 1px; | ||
| background: transparent; | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| import { fileURLToPath } from 'node:url' | ||
|
|
||
| export const clientPublicDir: string = fileURLToPath(new URL('../dist/public', import.meta.url)) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| export {} |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.