Explorar o código

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

Piotrek Koszuliński %!s(int64=8) %!d(string=hai) anos
pai
achega
439fd128f2
Modificáronse 1 ficheiros con 3 adicións e 2 borrados
  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...
 ]
 ```