Add docker build file for UI and associated Actions workflow

This commit is contained in:
Nix
2025-05-04 14:13:02 -04:00
parent 9cbf26e29e
commit 8502630550
13 changed files with 159 additions and 3 deletions
+6
View File
@@ -1,7 +1,13 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
import path from 'path'
// https://vite.dev/config/
export default defineConfig({
plugins: [react()],
resolve: {
alias: [
{ find: '@', replacement: path.resolve(__dirname, 'src') }
]
}
})