From 403096c496174e01e78397c16eedf38a636251ce Mon Sep 17 00:00:00 2001 From: Joel Hoelting Date: Sun, 18 Nov 2018 19:08:51 -0500 Subject: [PATCH] Fix typo on line 50 (pacage.json --> package.json) --- docs/basics/recommended-project-structure.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/basics/recommended-project-structure.md b/docs/basics/recommended-project-structure.md index d198c52d1..551ccad55 100644 --- a/docs/basics/recommended-project-structure.md +++ b/docs/basics/recommended-project-structure.md @@ -47,7 +47,7 @@ mv app/javascript client `rails/webpacker` probably doesn't support having your main node_modules directory under `/client`, so only follow these steps if you want to use your own webpack configuration (which is highly recommended!). 1. Move the `/package.json` to `/client/package.json` -2. Create a `/pacage.json` that delegates to `/client/package.json`. See the example in [spec/dummy/package.json](../../spec/dummy/package.json). +2. Create a `/package.json` that delegates to `/client/package.json`. See the example in [spec/dummy/package.json](../../spec/dummy/package.json). 3. See the webpack configuration in [spec/dummy/client](../../spec/dummy/client) for a webpack configuration example.