-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
9,228 additions
and
1,419 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,8 @@ | ||
public/* | ||
!public/index.html | ||
|
||
dist | ||
.parcel-cache | ||
|
||
# dependencies | ||
/node_modules | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
module.exports = { | ||
exclude: "node_modules/**", | ||
presets: ["solid"], | ||
plugins: ["@babel/syntax-dynamic-import", "@babel/plugin-proposal-optional-chaining"], | ||
sourceMap: true | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,32 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<title>Conduit</title> | ||
<meta content="width=device-width" name="viewport"> | ||
<!-- Import Ionicon icons & Google Fonts our Bootstrap theme relies on --> | ||
<link | ||
href="//code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css" | ||
rel="stylesheet" | ||
type="text/css" | ||
/> | ||
<link | ||
href="//fonts.googleapis.com/css?family=Titillium+Web:700|Source+Serif+Pro:400,700|Merriweather+Sans:400,700|Source+Sans+Pro:400,300,600,700,300italic,400italic,600italic,700italic" | ||
rel="stylesheet" | ||
type="text/css" | ||
/> | ||
<!-- Import the custom Bootstrap 4 theme from our hosted CDN --> | ||
<link rel="preconnect" href="https://static.productionready.io" crossorigin /> | ||
<link rel="preconnect" href="https://conduit.productionready.io" crossorigin /> | ||
<link rel="preconnect" href="http://code.ionicframework.com" crossorigin /> | ||
<link rel="stylesheet" type = "text/css" href="../styles/styles.css" /> | ||
<link | ||
rel="shortcut icon" | ||
type="image/x-icon" | ||
href="//demo.productionready.io/favicon.ico" | ||
/> | ||
<style>body{min-height: 101vh;}</style> | ||
</head> | ||
<body> | ||
<script type="module" src="./index.js"></script> | ||
</body> | ||
</html> | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<title>Conduit</title> | ||
<meta content="width=device-width" name="viewport"> | ||
<!-- Import Ionicon icons & Google Fonts our Bootstrap theme relies on --> | ||
<link | ||
href="//code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css" | ||
rel="stylesheet" | ||
type="text/css" | ||
/> | ||
<link | ||
href="//fonts.googleapis.com/css?family=Titillium+Web:700|Source+Serif+Pro:400,700|Merriweather+Sans:400,700|Source+Sans+Pro:400,300,600,700,300italic,400italic,600italic,700italic" | ||
rel="stylesheet" | ||
type="text/css" | ||
/> | ||
<!-- Import the custom Bootstrap 4 theme from our hosted CDN --> | ||
<link rel="preconnect" href="https://static.productionready.io" crossorigin /> | ||
<link rel="preconnect" href="https://conduit.productionready.io" crossorigin /> | ||
<link rel="preconnect" href="http://code.ionicframework.com" crossorigin /> | ||
<link | ||
rel="shortcut icon" | ||
type="image/x-icon" | ||
href="//demo.productionready.io/favicon.ico" | ||
/> | ||
<style>body{min-height: 101vh;}</style> | ||
</head> | ||
<body> | ||
<script type="module" src="./src/index.js"></script> | ||
</body> | ||
</html> |
Oops, something went wrong.