Skip to content

Commit ad4be2a

Browse files
committed
Fresh Vite starter
0 parents  commit ad4be2a

13 files changed

+5077
-0
lines changed

.gitignore

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# Logs
2+
logs
3+
*.log
4+
npm-debug.log*
5+
yarn-debug.log*
6+
yarn-error.log*
7+
pnpm-debug.log*
8+
lerna-debug.log*
9+
10+
node_modules
11+
dist
12+
dist-ssr
13+
*.local
14+
15+
# Editor directories and files
16+
.vscode/*
17+
!.vscode/extensions.json
18+
.idea
19+
.DS_Store
20+
*.suo
21+
*.ntvs*
22+
*.njsproj
23+
*.sln
24+
*.sw?

.new-component-config.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"lang": "js",
3+
"prettierConfig": {
4+
"semi": true,
5+
"singleQuote": true,
6+
"trailingComma": "es5"
7+
}
8+
}

LICENSE.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# Josh's Course Materials License
2+
3+
Version 1, November 2020
4+
Copyright (c) Josh Comeau, 2020
5+
6+
The files in this repository are meant to be used as part of a paid course, and are not intended for public distribution. They're open-source because it's the simplest form of distribution, and provides the best experience for students enrolled in the course.
7+
8+
All are welcome to create personal copies of this repository, and modify its contents for educational use. Please experiment with the code, and see what you can build!
9+
10+
It is forbidden to use these contents in any sort of commercial endeavour, including but not limited to:
11+
12+
• Reselling its contents as part of a different course
13+
• Incorporating the code into a pre-existing business or project
14+
• Selling your solution to students enrolled in the course
15+
16+
Exemptions can be made, on a case-by-case basis. Contact Josh Comeau ([email protected]) for more information.

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
TODO REPLACE ME

index.html

Lines changed: 25 additions & 0 deletions
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
6+
name="viewport"
7+
content="width=device-width, initial-scale=1"
8+
/>
9+
<meta name="theme-color" content="#000000" />
10+
11+
<link rel="icon" type="image/png" href="/favicon.png" />
12+
13+
<link rel="preconnect" href="https://fonts.gstatic.com" />
14+
<link
15+
href="https://fonts.googleapis.com/css2?family=Raleway:wght@500;600;800&display=swap"
16+
rel="stylesheet"
17+
/>
18+
19+
<title>TODO workshop name — CSS for JavaScript Developers</title>
20+
</head>
21+
<body>
22+
<div id="root"></div>
23+
<script type="module" src="/src/main.jsx"></script>
24+
</body>
25+
</html>

0 commit comments

Comments
 (0)