mdcpp / mdoj

Mingdao OnlineJudge, A performant contest management system base on cutting edge stack.
https://mdcpp.github.io/mdoj/
4 stars 1 forks source link

Basic Frontend #16

Open KAIYOHUGO opened 8 months ago

KAIYOHUGO commented 8 months ago

TODO

KAIYOHUGO commented 8 months ago

Some Note, you can add this in workspace .vscode/settings.json to improve devexp. need in workspace root because ra don't read the .vscode config file in member folder this is fix now

{
    "rust-analyzer.cargo.features": "all",
    "rust-analyzer.rustfmt.overrideCommand": [
        "leptosfmt",
        "--stdin",
        "--rustfmt"
    ],
    "emmet.includeLanguages": {
        "rust": "html"
    },
    "rust-analyzer.procMacro.ignored": {
        "leptos_macro": [
            "component",
            "server"
        ],
    }
}