mirror of
https://github.com/outbackdingo/firezone.git
synced 2026-01-27 10:18:54 +00:00
Closes #4883 Refs #7005 Adds support for Ubuntu 24.04, drops support for Ubuntu 20.04 Known issues: - On Ubuntu 22.04, sometimes GNOME shows the wrong tray icon - On Ubuntu 24.04, the first time you open the tray menu, GNOME takes a long time to open the menu. --------- Signed-off-by: Reactor Scram <ReactorScram@users.noreply.github.com>
15 lines
300 B
Batchfile
Executable File
15 lines
300 B
Batchfile
Executable File
@echo off
|
|
setlocal enabledelayedexpansion
|
|
|
|
REM Copy frontend dependencies
|
|
copy "node_modules\flowbite\dist\flowbite.min.js" "src\"
|
|
|
|
REM Compile CSS
|
|
call pnpm tailwindcss -i src\input.css -o src\output.css
|
|
|
|
REM bundle web assets
|
|
call pnpm vite build
|
|
|
|
REM Compile Rust and bundle
|
|
call pnpm tauri build
|