Skip to content

Commit 664cd27

Browse files
committed
Try demo in release mode
1 parent 503d8db commit 664cd27

3 files changed

Lines changed: 3 additions & 4 deletions

File tree

demos/tauri-app/src-tauri/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ crate-type = ["staticlib", "cdylib", "rlib"]
1515
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1616

1717
[build-dependencies]
18-
tauri-build = { version = "2.5.6", default-features = false }
18+
tauri-build = { version = "2.5.6", default-features = false , features = [] }
1919

2020
[dependencies]
21-
tauri = { version = "2.10.3" }
21+
tauri = { version = "2.10.3", features = [] }
2222
tauri-plugin-powersync = { path = "../../../packages/tauri" }
2323
powersync = "0.0.5"
2424
async-trait = "0.1.89"

demos/tauri-app/src-tauri/tauri.conf.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"productName": "tauri-app",
33
"version": "0.1.0",
4-
"identifier": "com.tauri.dev",
4+
"identifier": "com.powersync.demo.tauri.selfhosted",
55
"build": {
66
"beforeDevCommand": "pnpm dev",
77
"beforeBuildCommand": "pnpm build",

demos/tauri-app/src/routes/index.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,6 @@ function ListsEntry({ id, name }: ListEntry): ReactNode {
5959

6060
function open() {
6161
new WebviewWindow(`list-content-${id}`, {
62-
// TODO: There's no way this works outside of the development server.
6362
url: `/list/${id}`,
6463

6564
// create a webview with specific logical position and size

0 commit comments

Comments
 (0)