We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5d13533 commit d904607Copy full SHA for d904607
1 file changed
examples/app-host/objectstack.config.ts
@@ -1,5 +1,6 @@
1
import { defineStack } from '@objectstack/spec';
2
import { AppPlugin } from '@objectstack/runtime';
3
+import { ObjectQLPlugin } from '@objectstack/objectql';
4
import CrmApp from '../app-crm/objectstack.config';
5
import TodoApp from '../app-todo/objectstack.config';
6
import BiPluginManifest from '../plugin-bi/objectstack.config';
@@ -20,6 +21,7 @@ export default defineStack({
20
21
// Explicitly Load Plugins and Apps
22
// The Runtime CLI will iterate this list and call kernel.use()
23
plugins: [
24
+ new ObjectQLPlugin(),
25
// Wrap Manifests/Stacks in AppPlugin adapter
26
new AppPlugin(CrmApp),
27
new AppPlugin(TodoApp),
0 commit comments