Rvespula
Rvespula
SSolidJS
Created by Daniel Sousa @TutoDS on 6/24/2024 in #support
Phosphor icons
4 replies
SSolidJS
Created by Daniel Sousa @TutoDS on 6/24/2024 in #support
Phosphor icons
use unplugin-icons/vite
4 replies
SSolidJS
Created by Rvespula on 6/17/2024 in #support
Redirect in production:
thx @hannus
14 replies
SSolidJS
Created by Rvespula on 6/17/2024 in #support
Redirect in production:
It's still not clear to me. maybe the documents should include something about it @ryansolid 🤔
14 replies
SSolidJS
Created by Rvespula on 6/17/2024 in #support
Redirect in production:
dam this working.... but its strange....... why in develop this work xD
14 replies
SSolidJS
Created by Rvespula on 6/17/2024 in #support
Redirect in production:
sure:
export function LoginForm() {
const FormHook = useLoginForm();
const loginAction = useAction(login);

const handleSession: SubmitHandler<{
email: string;
password: string;
}> = async ({ email, password }) => {
try {
await loginAction(email, password);
} catch (error) {
throw new FormError(m.server_error_login_failed());
}
};
return <></>
}
export function LoginForm() {
const FormHook = useLoginForm();
const loginAction = useAction(login);

const handleSession: SubmitHandler<{
email: string;
password: string;
}> = async ({ email, password }) => {
try {
await loginAction(email, password);
} catch (error) {
throw new FormError(m.server_error_login_failed());
}
};
return <></>
}
14 replies
SSolidJS
Created by Rvespula on 6/17/2024 in #support
Redirect in production:
I already tried that, if I compile and test in node locally the same thing happens, it registers my event but the redirect does nothing, the server responds 200
14 replies
SSolidJS
Created by Rvespula on 6/17/2024 in #support
Redirect in production:
Succes, its with plain node
14 replies
SSolidJS
Created by Rvespula on 5/27/2024 in #support
Context with Meta
i found this issue in solid-meta: https://github.com/solidjs/solid-meta/issues/41
7 replies
SSolidJS
Created by Rvespula on 5/27/2024 in #support
Context with Meta
This is running on the server. If I remove the MetaTitle, it works. I'm not sure what could be wrong with the Title component from SolidMeta.
7 replies