mirror of
https://github.com/outbackdingo/firezone.git
synced 2026-01-27 18:18:55 +00:00
- Add Tailwind and Flowbite for consistent UI --------- Signed-off-by: Reactor Scram <ReactorScram@users.noreply.github.com> Co-authored-by: Reactor Scram <ReactorScram@users.noreply.github.com>
15 lines
329 B
Batchfile
Executable File
15 lines
329 B
Batchfile
Executable File
@echo off
|
|
setlocal enabledelayedexpansion
|
|
|
|
REM Copy frontend dependencies
|
|
copy "node_modules\flowbite\dist\flowbite.min.js" "src\"
|
|
|
|
REM Compile TypeScript in watch mode
|
|
start tsc --watch
|
|
|
|
REM Compile CSS in watch mode
|
|
start call npx tailwindcss -i src\input.css -o src\output.css --watch
|
|
|
|
REM Start Tauri hot-reloading
|
|
tauri dev
|