Compare commits
12 Commits
fix/404-on
...
0e022fabef
Author | SHA1 | Date | |
---|---|---|---|
0e022fabef | |||
66179ba858 | |||
63f82eab07
|
|||
f00adf9276
|
|||
216b4cee80
|
|||
cdc02a601d
|
|||
8bcb479b57
|
|||
b9d5c25137 | |||
e9fb20ad6e
|
|||
d98222cd4a | |||
c6effdfa15
|
|||
f17986fa16 |
14
Cargo.toml
14
Cargo.toml
@@ -44,7 +44,7 @@ tracing = "0.1.40"
|
||||
tracing-forest = "0.1.6"
|
||||
|
||||
# SCSS -> CSS + usage in rust code
|
||||
turf = "0.9.3"
|
||||
turf = "0.10.0"
|
||||
|
||||
# Dioxus
|
||||
dioxus-free-icons = { version = "0.9", features = ["ionicons", "font-awesome-solid"] }
|
||||
@@ -78,6 +78,18 @@ matrix-sdk = { git = "https://github.com/matrix-org/matrix-rust-sdk.git", rev =
|
||||
[build-dependencies]
|
||||
regex = "1.10.3"
|
||||
|
||||
[profile]
|
||||
|
||||
[profile.wasm-dev]
|
||||
inherits = "dev"
|
||||
opt-level = 1
|
||||
|
||||
[profile.server-dev]
|
||||
inherits = "dev"
|
||||
|
||||
[profile.android-dev]
|
||||
inherits = "dev"
|
||||
|
||||
[package.metadata.turf]
|
||||
minify = true
|
||||
|
||||
|
@@ -9,7 +9,7 @@ WORKDIR /usr/src/beau-gosse-du-92
|
||||
|
||||
# git is required by the git-version crate
|
||||
RUN apt update \
|
||||
&& apt install -y --no-install-recommends git \
|
||||
&& apt install -y --no-install-recommends git git-lfs \
|
||||
&& apt clean
|
||||
|
||||
COPY . .
|
||||
|
@@ -214,6 +214,11 @@ input {
|
||||
font-family: inherit;
|
||||
}
|
||||
|
||||
// Hide the preloader as soon as the application is loaded and ready to be rendered
|
||||
#preloader {
|
||||
display: none;
|
||||
}
|
||||
|
||||
#main {
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
|
Reference in New Issue
Block a user