feat: add Wails runtime library and initial application setup

- Created package.json for Wails JavaScript runtime library.
- Added TypeScript definitions for runtime functions.
- Implemented runtime.js with event handling and logging functions.
- Initialized Go module with dependencies for Wails and other libraries.
- Added main.go for application entry point and asset embedding.
- Configured wails.json for application settings and build commands.
This commit is contained in:
Jonathan Atta
2026-03-11 17:06:52 +01:00
commit 17beab746e
34 changed files with 3608 additions and 0 deletions

11
frontend/vite.config.ts Normal file
View File

@@ -0,0 +1,11 @@
import { defineConfig } from 'vite'
export default defineConfig(async () => {
const reactPlugin = (await import('@vitejs/plugin-react')).default
return {
plugins: [reactPlugin()],
build: {
outDir: '../frontend/dist'
}
}
})