diff --git a/doc/quickstart.hbs b/doc/quickstart.hbs
index bb0d450c55..4c5acffa65 100644
--- a/doc/quickstart.hbs
+++ b/doc/quickstart.hbs
@@ -7,6 +7,9 @@ layout: doc.hbs
This primer shows you how to put a simple map on a web page.
+**For production, we strongly recommend bundling the application together with its dependencies, as explained in the [Building an OpenLayers Application](./tutorials/bundle.html) tutorial.**
+
+
## Put a map on a page
Below you'll find a complete working example. Create a new file, copy in the contents below, and open in a browser:
@@ -15,14 +18,14 @@ Below you'll find a complete working example. Create a new file, copy in the co
-
+
-
+
OpenLayers example
@@ -56,10 +59,8 @@ To include a map a web page you will need 3 things:
### Include OpenLayers
-**Caveat:** In production, it is not recommended to include dependencies as script tag. Instead, we recommend bundling the application together with its dependencies, as explained in the [Building an OpenLayers Application](./tutorials/bundle.html) tutorial.
-
```xml
-
+
```
The first part is to include the JavaScript library. For the purpose of this tutorial, here we simply point to the openlayers.org website to get the whole library. In a production environment, we would build a custom version of the library including only the module needed for our application.