Bläddra i källkod

Docs: Realised that this is in adv setup scenarios. [skip ci]

Piotrek Koszuliński 8 år sedan
förälder
incheckning
439fd128f2
1 ändrade filer med 3 tillägg och 2 borttagningar
  1. 3 2
      docs/builds/guides/integration/advanced-setup.md

+ 3 - 2
docs/builds/guides/integration/advanced-setup.md

@@ -372,12 +372,13 @@ module: {
 }
 ```
 
-And load [`regenerator-runtime`](https://www.npmjs.com/package/regenerator-runtime) (needed to make ES6 generators work after transpilation) by adding it as the second [entry point](https://webpack.js.org/configuration/entry-context/#entry):
+And load [`regenerator-runtime`](https://www.npmjs.com/package/regenerator-runtime) (needed to make ES6 generators work after transpilation) by adding it as the first [entry point](https://webpack.js.org/configuration/entry-context/#entry):
 
 ```js
 entry: [
 	require.resolve( 'regenerator-runtime/runtime.js' ),
-	path.resolve( __dirname, 'src', 'ckeditor.js' )
+
+	// your entries...
 ]
 ```