mirror of
https://github.com/linsa-io/linsa.git
synced 2026-02-24 19:35:02 +01:00
* chore(nix): add `cargo-tauri` * chore(rust): add rustfmt config * feat: add tauri app * fix(config): tauri and web config nextjs * fix: default value * fix: force graph * fix: undefined me * fix: undefined me in page detail * fix: remove title from search component * fix: package version * chore: next config * feat: random btn for go to auth * fix the config * feat: tauri --------- Co-authored-by: Alice Carroll <git@alice-carroll.pet> Co-authored-by: Aslam H <iupin5212@gmail.com>
32 lines
642 B
JSON
32 lines
642 B
JSON
{
|
|
"productName": "learn-anything",
|
|
"version": "0.1.0",
|
|
"identifier": "xyz.learn-anything",
|
|
"build": {
|
|
"frontendDist": "../out",
|
|
"devUrl": "http://localhost:3000",
|
|
"beforeDevCommand": "bun dev",
|
|
"beforeBuildCommand": "bun build"
|
|
},
|
|
"app": {
|
|
"windows": [
|
|
{
|
|
"title": "Learn Anything",
|
|
"width": 800,
|
|
"height": 600,
|
|
"resizable": true,
|
|
"fullscreen": false,
|
|
"url": "http://localhost:3000"
|
|
}
|
|
],
|
|
"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"]
|
|
}
|
|
}
|