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 d90860d commit 3fb1708Copy full SHA for 3fb1708
packages/qwik-nx/src/generators/application/utils/get-qwik-application-project-params.ts
@@ -53,11 +53,12 @@ function getPreviewTarget(
53
params: UpdateQwikAppConfigurationParams
54
): TargetConfiguration {
55
return {
56
- executor: '@nrwl/vite:preview-server',
+ executor: 'nx:run-commands',
57
options: {
58
- buildTarget: `${params.projectName}:build-ssr`,
+ command: 'vite preview',
59
+ cwd: `${params.projectRoot}`,
60
},
- dependsOn: ['build'],
61
+ dependsOn: ['build-ssr'],
62
};
63
}
64
function getTestTarget(
0 commit comments