Compare commits
No commits in common. "d42ddddd298fe21d65a82e597826e85b95398cf3" and "b167d6d586e16d55cdcebe7d82a3ffaecdc0235b" have entirely different histories.
d42ddddd29
...
b167d6d586
4 changed files with 2 additions and 23 deletions
|
@ -28,9 +28,7 @@
|
|||
default = import ./shell.nix {
|
||||
inherit pkgs;
|
||||
additionalBuildInputs = [
|
||||
(pkgs.rust-bin.selectLatestNightlyWith (toolchain: toolchain.default.override {
|
||||
extensions = [ "rust-src" ];
|
||||
}))
|
||||
(pkgs.rust-bin.selectLatestNightlyWith (toolchain: toolchain.default))
|
||||
];
|
||||
};
|
||||
});
|
||||
|
|
|
@ -1,13 +0,0 @@
|
|||
{
|
||||
"rustfmt": {
|
||||
"overrideCommand": ["leptosfmt", "--stdin", "--rustfmt"]
|
||||
},
|
||||
"procMacro": {
|
||||
"ignored": {
|
||||
"leptos_macro": ["component"]
|
||||
}
|
||||
},
|
||||
"diagnostic": {
|
||||
"disabled": ["macro-error"]
|
||||
}
|
||||
}
|
|
@ -1,8 +1,2 @@
|
|||
[rustfmt]
|
||||
overrideCommand = ["leptosfmt", "--stdin", "--rustfmt"]
|
||||
|
||||
[procMacro.ignored]
|
||||
leptos_macro = ["component"]
|
||||
|
||||
[diagnostic]
|
||||
disabled = ["macro-error"]
|
||||
|
|
|
@ -4,7 +4,7 @@ use leptos::{component, view, Children, IntoView};
|
|||
pub fn HtmxPage(children: Children) -> impl IntoView {
|
||||
view! {
|
||||
<head>
|
||||
<title>"Nyazoom"</title>
|
||||
<title>Nyazoom</title>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<link href="/css/main.css" rel="stylesheet" />
|
||||
|
|
Loading…
Reference in a new issue