From 72c9e4de72428a1b348bcb988090f7bc3ea69efe Mon Sep 17 00:00:00 2001 From: tech4him Date: Fri, 24 Feb 2017 20:55:52 -0700 Subject: [PATCH] Fix wrong directory for app.js in README The `app.js` file is being built to the site root, not a `js` subdirectory. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 133c06f..b950d8d 100644 --- a/README.md +++ b/README.md @@ -49,7 +49,7 @@ npm run build | |--static // Files in here ends up in the public folder |--src // Files that will pass through the asset pipeline | |--css // CSS files in the root of this folder will end up in /css/... -| |--js // app.js will be compiled to /js/app.js with babel +| |--js // app.js will be compiled to /app.js with babel ``` ## Basic Concepts