diff --git a/content/guides/getting-started.md b/content/guides/getting-started.md index 764e5e88202a..c5c22d2188bc 100644 --- a/content/guides/getting-started.md +++ b/content/guides/getting-started.md @@ -257,7 +257,7 @@ T> Custom parameters can be passed to webpack by adding two dashes between the ` ## Conclusion -Now that you have a basic build together, you should dig into the [basic concepts](/concepts) and [configuration](/configuration) to better understand webpack's design. The [API](/api) section digs into the various interfaces webpack offers. Or, if you'd prefer to learn by example, select the next guide from the list and continue building out this little demo we've been working on which should now look similar to this: +Now that you have a basic build together you should move on to the next guide [`Asset Management`](/guides/asset-management) to learn how to manage assets like images and fonts with webpack. At this point, your project should look like this: __project__ @@ -274,3 +274,5 @@ webpack-demo ``` T> If you're using npm 5, you'll probably also see a `package-lock.json` file in your directory. + +If you want to learn more about webpack's design, you can check out the [basic concepts](/concepts) and [configuration](/configuration) pages. Furthermore, the [API](/api) section digs into the various interfaces webpack offers.