checkpoint

This commit is contained in:
Shan Carter
2017-01-13 10:38:18 -08:00
parent d8bc87061d
commit f6c8a2a870
13 changed files with 224 additions and 76 deletions
+3 -3
View File
@@ -6,8 +6,8 @@ import serve from 'rollup-plugin-serve';
import uglify from 'rollup-plugin-uglify';
import string from 'rollup-plugin-string';
const PORT = 8080;
console.log(`open http://localhost:${PORT}/`);
// const PORT = 8080;
// console.log(`open http://localhost:${PORT}/`);
export default {
entry: 'index.js',
@@ -34,6 +34,6 @@ export default {
commonjs(),
// uglify(),
// liveReload(),
serve({port: PORT}),
// serve({port: PORT}),
]
};