We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
LeptosOptions
As in the title - it'd be great if LeptosOptions provided a function (or member?) with the path to the CSS file generated.
From what I can see, the generated CSS file is put in /pkg/{output_name}.css. It could be a simple helper function, currently I have:
/pkg/{output_name}.css
fn css_path(leptos_options: &LeptosOptions) -> String { let mut path = String::with_capacity(200); path.push('/'); path.push_str(&*leptos_options.site_pkg_dir); path.push('/'); path.push_str(&*leptos_options.output_name); path.push_str(".css"); path }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
As in the title - it'd be great if
LeptosOptions
provided a function (or member?) with the path to the CSS file generated.From what I can see, the generated CSS file is put in
/pkg/{output_name}.css
. It could be a simple helper function, currently I have:The text was updated successfully, but these errors were encountered: