diff --git a/copyStaticAssets.js b/copyStaticAssets.js index 23c11e2..10137f6 100644 --- a/copyStaticAssets.js +++ b/copyStaticAssets.js @@ -1,5 +1,5 @@ var shell = require('shelljs'); -shell.cp('-R', 'src/public/js/lib', 'dist/public/js/lib'); -shell.cp('-R', 'src/public/fonts', 'dist/public/fonts'); -shell.cp('-R', 'src/public/images', 'dist/public/images'); \ No newline at end of file +shell.cp('-R', 'src/public/js/lib', 'dist/public/js/'); +shell.cp('-R', 'src/public/fonts', 'dist/public/'); +shell.cp('-R', 'src/public/images', 'dist/public/'); diff --git a/src/controllers/home.ts b/src/controllers/home.ts index 67a22fa..e16b528 100644 --- a/src/controllers/home.ts +++ b/src/controllers/home.ts @@ -9,4 +9,3 @@ export let index = (req: Request, res: Response) => { title: "Home" }); }; -