mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-23 20:53:06 +00:00
parent
15ec138320
commit
3209dd330b
2 changed files with 2 additions and 1 deletions
|
@ -53,6 +53,7 @@ impl Create {
|
|||
.arg(&self.template)
|
||||
.arg("--name")
|
||||
.arg(&self.name)
|
||||
.arg("--force")
|
||||
.stdout(Stdio::piped())
|
||||
.stderr(Stdio::inherit())
|
||||
.output()?;
|
||||
|
|
|
@ -7,7 +7,7 @@ async fn main() -> Result<()> {
|
|||
let args = Cli::parse();
|
||||
set_up_logging();
|
||||
|
||||
let dioxus_config = DioxusConfig::load()?;
|
||||
let dioxus_config = DioxusConfig::load().unwrap_or(DioxusConfig::default());
|
||||
|
||||
let plugin_state = PluginManager::init(dioxus_config.plugin);
|
||||
|
||||
|
|
Loading…
Reference in a new issue