We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f6d60c commit 120a685Copy full SHA for 120a685
packages/qwik-nx/src/generators/preset/generator.ts
@@ -1,6 +1,5 @@
1
import { ensurePackage, Tree } from '@nrwl/devkit';
2
import { QwikWorkspacePresetGeneratorSchema } from './schema';
3
-import { appGenerator } from '../application/generator';
4
import { getInstalledNxVersion } from '../../utils/get-installed-nx-version';
5
6
export default async function (
@@ -12,5 +11,7 @@ export default async function (
12
11
options.directory = '';
13
options.name = options.qwikAppName ?? options.name;
14
options.style = options.qwikAppStyle ?? options.style;
15
- return appGenerator(tree, options);
+ return await import('../application/generator').then(({ appGenerator }) =>
+ appGenerator(tree, options)
16
+ );
17
}
0 commit comments