fix(terminal): change repo name

This commit is contained in:
zhangheng
2026-06-25 14:31:42 +08:00
parent b7a8bf49c4
commit 561a062cf2
6 changed files with 12 additions and 12 deletions

View File

@@ -1,3 +1,3 @@
fn main() {
println!("cargo:rustc-env=LEPTOS_OUTPUT_NAME=base_path_demo");
println!("cargo:rustc-env=LEPTOS_OUTPUT_NAME=rustui_playground");
}

View File

@@ -5,9 +5,9 @@ use leptos_meta::MetaTags;
use crate::app::App;
pub fn shell(options: LeptosOptions) -> impl IntoView {
let css_href = SiteConfig::with_base_path("/pkg/base_path_demo.css");
let js_href = SiteConfig::with_base_path("/pkg/base_path_demo.js");
let wasm_href = SiteConfig::with_base_path("/pkg/base_path_demo.wasm");
let css_href = SiteConfig::with_base_path("/pkg/rustui_playground.css");
let js_href = SiteConfig::with_base_path("/pkg/rustui_playground.js");
let wasm_href = SiteConfig::with_base_path("/pkg/rustui_playground.wasm");
let hydration_script = format!(
r#"import("{js_href}").then((mod) => {{
mod.default({{ module_or_path: "{wasm_href}" }}).then(() => mod.hydrate());