aboutsummaryrefslogtreecommitdiffstats
path: root/teleterm/src/web.rs
diff options
context:
space:
mode:
Diffstat (limited to 'teleterm/src/web.rs')
-rw-r--r--teleterm/src/web.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/teleterm/src/web.rs b/teleterm/src/web.rs
index 5159233..1cf3a31 100644
--- a/teleterm/src/web.rs
+++ b/teleterm/src/web.rs
@@ -8,15 +8,15 @@ use lazy_static_include::*;
lazy_static_include::lazy_static_include_bytes!(
INDEX_HTML,
- "../static/index.html"
+ "static/index.html"
);
lazy_static_include::lazy_static_include_bytes!(
TELETERM_WEB_JS,
- "../target/wasm/teleterm_web.js"
+ "static/teleterm_web.js"
);
lazy_static_include::lazy_static_include_bytes!(
TELETERM_WEB_WASM,
- "../target/wasm/teleterm_web_bg.wasm"
+ "static/teleterm_web_bg.wasm"
);
pub fn router() -> impl gotham::handler::NewHandler {