Skip to content

Commit 869519d

Browse files
committed
Fix README: registering lazy controllers in bootstrap.js
1 parent 28cf851 commit 869519d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -266,8 +266,8 @@ const app = startStimulusApp(require.context(
266266
));
267267

268268
// the normal way to manually register controllers
269-
application.register('clipboard', Clipboard)
270-
application.register('autocomplete', Autocomplete)
269+
app.register('clipboard', Clipboard);
270+
app.register('autocomplete', Autocomplete);
271271

272272
export { app };
273273
```

0 commit comments

Comments
 (0)