forked from globuzma/mentalaradio
First real commit
This commit is contained in:
parent
1947b908a6
commit
107d33c908
30 changed files with 2583 additions and 1 deletions
1
src/lib/index.ts
Normal file
1
src/lib/index.ts
Normal file
|
@ -0,0 +1 @@
|
|||
// place files you want to import through the `$lib` alias in this folder.
|
1
src/lib/router.tsx
Normal file
1
src/lib/router.tsx
Normal file
|
@ -0,0 +1 @@
|
|||
export const basePath = (import.meta.env.MODE == "development") ? "http://localhost:8080" : (window.BASE_PATH || "")
|
6
src/lib/utils.ts
Normal file
6
src/lib/utils.ts
Normal file
|
@ -0,0 +1,6 @@
|
|||
import { type ClassValue, clsx } from "clsx";
|
||||
import { twMerge } from "tailwind-merge";
|
||||
|
||||
export function cn(...inputs: ClassValue[]) {
|
||||
return twMerge(clsx(inputs));
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue