This makes the Vite assets handling better, namely: - make it possible to include any vite assets in the templates - include the right `<link rel="preload">` tags for assets - include Subresource Integrity hashes - pre-compress assets and remove on-the-fly compression by the Rust server - build the CSS used by templates through Vite It also moves the React app from /app/ to /account/, and remove some of the old SSR account screens.
13 lines
283 B
TOML
13 lines
283 B
TOML
[package]
|
|
name = "mas-spa"
|
|
version = "0.1.0"
|
|
authors = ["Quentin Gliech <quenting@element.io>"]
|
|
edition = "2021"
|
|
license = "Apache-2.0"
|
|
|
|
[dependencies]
|
|
serde = { version = "1.0.166", features = ["derive"] }
|
|
thiserror = "1.0.41"
|
|
camino = { version = "1.1.4", features = ["serde1"] }
|
|
|