Initial commit

This commit is contained in:
Robert Nasarek 2026-06-25 09:11:23 +02:00
commit 05c65aad4d
155 changed files with 93617 additions and 0 deletions

37
src-tauri/tauri.conf.json Normal file
View file

@ -0,0 +1,37 @@
{
"$schema": "../node_modules/@tauri-apps/cli/config.schema.json",
"productName": "dfg_3dviewer",
"version": "0.1.0",
"identifier": "com.dworak.aim3dviewer",
"build": {
"frontendDist": "../dist/dev",
"devUrl": "http://127.0.0.1:1234",
"beforeDevCommand": "npm run build:dev",
"beforeBuildCommand": "npm run build:dev"
},
"app": {
"windows": [
{
"title": "AIM 3D Viewer",
"width": 1680,
"height": 1040,
"resizable": true,
"fullscreen": false
}
],
"security": {
"csp": "default-src 'self' blob: data:;"
}
},
"bundle": {
"active": true,
"targets": "all",
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
]
}
}