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 9bc6964 commit 3e9570bCopy full SHA for 3e9570b
build-system-tests/scripts/mega-app-start.sh
@@ -56,9 +56,12 @@ echo "###########################"
56
echo "cd ./mega-apps/${MEGA_APP_NAME}"
57
cd ./mega-apps/${MEGA_APP_NAME}
58
59
-if [ "$BUILD_TOOL" == 'vite' ] || [ "$BUILD_TOOL" == 'nuxt' ]; then
+if [ "$BUILD_TOOL" == 'vite' ]; then
60
echo "npm run dev -- --port 3000 &"
61
npm run dev -- --port 3000 &
62
+elif [ "$BUILD_TOOL" == 'nuxt' ]; then
63
+ echo "npm run preview -- --port 3000 &"
64
+ npm run preview -- --port 3000 &
65
elif [ "$FRAMEWORK" == 'vue' ]; then
66
echo "npm run serve -- --port 3000 &"
67
npm run serve -- --port 3000 &
0 commit comments