Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,5 @@ This is a simple project to compare the performance of different SSR frameworks.
## License

Apache-2.0

![SSR_Performance_Showdown](https://github.com/user-attachments/assets/d2f81b8e-7c17-4de6-9f8e-9df57947854b)
7 changes: 7 additions & 0 deletions dioxus/.cargo/config.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
[profile]

[profile.dioxus-client]
inherits = "release"

[profile.dioxus-server]
inherits = "release"
12 changes: 12 additions & 0 deletions dioxus/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Generated by Cargo
# will have compiled files and executables
/target/
/dist/
/static/
/.dioxus/

# this file will generate by tailwind:
/assets/tailwind.css

# These are backup files generated by rustfmt
**/*.rs.bk
Loading