Skip to content

Commit

Permalink
Example Page Improvements + Closes Unresolved declaration file for vu…
Browse files Browse the repository at this point in the history
…e3-simple-icons.mjs #6
  • Loading branch information
wyatt-herkamp committed Dec 28, 2023
1 parent 46f2321 commit e0c9bda
Show file tree
Hide file tree
Showing 17 changed files with 1,381 additions and 462 deletions.
2 changes: 2 additions & 0 deletions example/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
dist/
node_modules/
8 changes: 8 additions & 0 deletions example/.prettierrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"$schema": "https://json.schemastore.org/prettierrc",
"semi": false,
"tabWidth": 2,
"singleQuote": true,
"printWidth": 100,
"trailingComma": "none"
}
22 changes: 11 additions & 11 deletions example/index.html
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
<!DOCTYPE html>
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vue3 Simple Icons</title>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.js"></script>
</body>
<head>
<meta charset="UTF-8" />
<link rel="icon" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vue3 Simple Icons</title>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>
Loading

0 comments on commit e0c9bda

Please sign in to comment.