Skip to content

Commit 2419808

Browse files
first commit
0 parents  commit 2419808

File tree

104 files changed

+7343
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

104 files changed

+7343
-0
lines changed

Diff for: .gitignore

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
public/build
2+
.routify
3+
node_modules
4+
.history
5+
dist

Diff for: index.html

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="utf-8" />
5+
<meta name="viewport" content="width=device-width,initial-scale=1" />
6+
7+
<title>[BETA] Routify 3</title>
8+
9+
<!-- Google Fonts -->
10+
<link
11+
rel="stylesheet"
12+
href="https://fonts.googleapis.com/css?family=Roboto:300,300italic,700,700italic"
13+
/>
14+
15+
<!-- CSS Reset -->
16+
<link
17+
rel="stylesheet"
18+
href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.css"
19+
/>
20+
21+
<script type="module" src="/src/main.js"></script>
22+
</head>
23+
24+
<body></body>
25+
</html>

Diff for: jsconfig.json

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"compilerOptions": {
3+
"checkJs": true,
4+
"baseUrl": ".",
5+
"paths": {
6+
"#cmp/*": ["./src/cmp/*"],
7+
"#root/*": ["./*"]
8+
},
9+
"target": "esnext",
10+
"moduleResolution": "node"
11+
},
12+
"exclude": [
13+
"**/node_modules",
14+
"**/dist",
15+
"**/example",
16+
"**/temp",
17+
"**/output",
18+
"**/.history"
19+
]
20+
}

0 commit comments

Comments
 (0)