mirror of
https://github.com/cupcakearmy/cryptgeon.git
synced 2026-04-02 09:55:23 +00:00
11 lines
206 B
Rust
11 lines
206 B
Rust
use actix_files::Files;
|
|
use actix_web::web;
|
|
|
|
pub fn init(cfg: &mut web::ServiceConfig) {
|
|
cfg.service(
|
|
Files::new("/", "./frontend/build")
|
|
.index_file("index.html")
|
|
.use_etag(true),
|
|
);
|
|
}
|