feat: directly open affine page on production

This commit is contained in:
Lin Onetwo
2023-01-04 21:04:06 +08:00
parent cf56292484
commit c732520182
6 changed files with 24 additions and 6 deletions
+11 -2
View File
@@ -5,14 +5,23 @@
mod commands;
mod state;
use dotenvy::dotenv;
use state::AppState;
use tokio::sync::Mutex;
use std::env;
use tauri::TitleBarStyle;
use tokio::sync::Mutex;
#[tokio::main]
async fn main() {
tauri::async_runtime::set(tokio::runtime::Handle::current());
dotenv().ok();
let preload = include_str!("../../public/preload/index.js");
let is_dev = env::var("NODE_ENV").unwrap_or_default() == "development";
let initial_path = if is_dev {
"index.html"
} else {
"affine-out/index.html"
};
tauri::Builder::default()
.manage(AppState(Mutex::new(
state::AppStateRaw::new().await.unwrap(),
@@ -20,7 +29,7 @@ async fn main() {
// manually create window here, instead of in the tauri.conf.json, to add `initialization_script` here
.setup(move |app| {
let _window =
tauri::WindowBuilder::new(app, "label", tauri::WindowUrl::App("index.html".into()))
tauri::WindowBuilder::new(app, "label", tauri::WindowUrl::App(initial_path.into()))
.title("AFFiNE")
.inner_size(1000.0, 800.0)
.title_bar_style(TitleBarStyle::Overlay)