Skip to content

Commit

Permalink
Allowing expired certs
Browse files Browse the repository at this point in the history
  • Loading branch information
kthakore authored and saidinesh5 committed Jun 13, 2022
1 parent 1b86369 commit 3cafbb9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/compiler/src/asset_loader/builtin.rs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ pub struct DefaultAssetLoader {
impl DefaultAssetLoader {
pub fn new(root_directory: impl Into<PathBuf>) -> Self {
DefaultAssetLoader {
client: Client::default(),
client: Client::builder().danger_accept_invalid_certs(true).build()?,
root_directory: root_directory.into(),
}
}
Expand Down

0 comments on commit 3cafbb9

Please sign in to comment.