cryptgeon/backend/src/client.rs

11 lines
206 B
Rust
Raw Normal View History

2022-03-01 00:53:47 +01:00
use actix_files::Files;
use actix_web::web;
2021-05-02 12:32:03 +02:00
pub fn init(cfg: &mut web::ServiceConfig) {
2022-03-01 00:53:47 +01:00
cfg.service(
Files::new("/", "./frontend/build")
.index_file("index.html")
.use_etag(true),
);
2021-05-02 12:32:03 +02:00
}