Initial commit

# Conflicts:
#	README.md
This commit is contained in:
2025-12-30 15:12:26 +01:00
parent 68b2f8949b
commit e57d9a0229
38 changed files with 7635 additions and 1 deletions

36
src-tauri/tauri.conf.json Normal file
View File

@@ -0,0 +1,36 @@
{
"$schema": "https://schema.tauri.app/config/2",
"productName": "RadioPlayer",
"version": "0.1.0",
"identifier": "com.radio.player",
"build": {
"frontendDist": "../src"
},
"app": {
"withGlobalTauri": true,
"windows": [
{
"title": "RadioPlayer",
"width": 360,
"height": 720,
"resizable": false,
"decorations": false,
"transparent": true
}
],
"security": {
"csp": null
}
},
"bundle": {
"active": true,
"targets": "all",
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
]
}
}