fix(terminal): change repo name
This commit is contained in:
@@ -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");
|
||||
}
|
||||
|
||||
@@ -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());
|
||||
|
||||
Reference in New Issue
Block a user