This commit is contained in:
snoop 2017-05-25 20:45:57 +09:00
parent e67759372a
commit 3c1b636994
4 changed files with 50 additions and 2 deletions

4
.gitignore vendored
View File

@ -59,5 +59,5 @@ typings/
dist/
node_modules/
public/
.vscode/

29
.vscode/tasks.json vendored Normal file
View File

@ -0,0 +1,29 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "0.1.0",
"isShellCommand": true,
"showOutput": "always",
"suppressTaskName": false,
"args": [
"--color"
],
"tasks": [
{
"taskName": "npm:webpack-dev-server",
"command": "npm",
"args": ["run", "webpack-dev-server"],
"isBuildCommand": true,
"isTestCommand": false
},
{
"taskName": "gulp:webpack",
"command": "gulp",
"args": ["webpack"],
"isBuildCommand": true,
"isTestCommand": false
}
]
}

BIN
public/favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

19
public/index.html Normal file
View File

@ -0,0 +1,19 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Hello React!</title>
<!--[if lte IE 9]>
<script src="https://cdnjs.cloudflare.com/ajax/libs/es6-promise/4.1.0/es6-promise.auto.js"></script>
<![endif]-->
<!-- Dependencies -->
<!-- Main -->
<script src="./vendor.bundle.js"></script>
</head>
<body>
<div id="example"></div>
<script src="./bundle.js"></script>
</body>
</html>