|
@@ -101,13 +101,6 @@ pub enum Platform {
|
|
Desktop,
|
|
Desktop,
|
|
}
|
|
}
|
|
|
|
|
|
-/// Ensure the given value for `--public-url` is formatted correctly.
|
|
|
|
-pub fn parse_public_url(val: &str) -> String {
|
|
|
|
- let prefix = if !val.starts_with('/') { "/" } else { "" };
|
|
|
|
- let suffix = if !val.ends_with('/') { "/" } else { "" };
|
|
|
|
- format!("{}{}{}", prefix, val, suffix)
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
/// Config options for the bundling system.
|
|
/// Config options for the bundling system.
|
|
#[derive(Clone, Debug, Default, Deserialize, Parser)]
|
|
#[derive(Clone, Debug, Default, Deserialize, Parser)]
|
|
pub struct ConfigOptsBundle {
|
|
pub struct ConfigOptsBundle {
|