Skip to content

Commit

Permalink
프로젝트 구조 셋팅
Browse files Browse the repository at this point in the history
  • Loading branch information
leeduyoung committed Mar 10, 2019
1 parent b693df9 commit 01df829
Show file tree
Hide file tree
Showing 12 changed files with 4,829 additions and 1 deletion.
27 changes: 27 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
### VisualStudioCode ###
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json

### VisualStudioCode Patch ###
# Ignore all local history of files
.history

### Node ###
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# Runtime data
pids
*.pid
*.seed
*.pid.lock

node_modules/
bin/
32 changes: 32 additions & 0 deletions assets/js/bundle.min.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions assets/js/bundle.min.js.map

Large diffs are not rendered by default.

18 changes: 17 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
@@ -1 +1,17 @@
Hello World
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Portfolio</title>
</head>
<body>
<div id="root"></div>

<!-- EXTERNAL ASSETS -->

<!-- INTERNAL ASSETS -->
<script src="assets/js/bundle.min.js"></script>
</body>
</html>
Loading

0 comments on commit 01df829

Please sign in to comment.