Skip to main content

embedded_wg_display/http_server/
frontend.rs

1//! List of static frontend assets that are embedded into the compiled binary.
2pub const INDEX_HTML: &[u8] = include_bytes!("../../../frontend/dist/index.html");
3pub const FRONTEND_JS: &[u8] = include_bytes!("../../../frontend/dist/frontend.js");
4pub const OUTPUT_CSS: &[u8] = include_bytes!("../../../frontend/dist/output.css");
5pub const BOOTSTRAP_CSS: &[u8] = include_bytes!("../../../frontend/dist/assets/css/bootstrap.css");
6pub const JQUERY_JS: &[u8] = include_bytes!("../../../frontend/dist/assets/js/jquery.min.js");
7pub const UNDERSCORE_JS: &[u8] = include_bytes!("../../../frontend/dist/assets/js/underscore.js");
8pub const JSONFORM_JS: &[u8] = include_bytes!("../../../frontend/dist/assets/js/jsonform.js");
9pub const JSONFORM_DEFAULTS_JS: &[u8] =
10    include_bytes!("../../../frontend/dist/assets/js/jsonform-defaults.js");
11pub const JSONFORM_SPLIT_JS: &[u8] =
12    include_bytes!("../../../frontend/dist/assets/js/jsonform-split.js");
13pub const WIDGET_CONFIG_HTML: &[u8] =
14    include_bytes!("../../../frontend/dist/assets/html/widget_config.html");
15pub const LOGO_PNG: &[u8] = include_bytes!("../../../frontend/dist/assets/logo.png");
16pub const FRONTEND_WASM_GZ: &[u8] = include_bytes!("../../../frontend/dist/frontend_bg.wasm.gz");
17pub const FONT_GLYPHS_EOT: &[u8] =
18    include_bytes!("../../../frontend/dist/assets/fonts/glyphicons-halflings-regular.eot");
19pub const FONT_GLYPHS_SVG: &[u8] =
20    include_bytes!("../../../frontend/dist/assets/fonts/glyphicons-halflings-regular.svg");
21pub const FONT_GLYPHS_TTF: &[u8] =
22    include_bytes!("../../../frontend/dist/assets/fonts/glyphicons-halflings-regular.ttf");
23pub const FONT_GLYPHS_WOFF: &[u8] =
24    include_bytes!("../../../frontend/dist/assets/fonts/glyphicons-halflings-regular.woff");
25pub const FONT_GLYPHS_WOFF2: &[u8] =
26    include_bytes!("../../../frontend/dist/assets/fonts/glyphicons-halflings-regular.woff2");