Skip to content

ci: update canary tests for nuxt v4 #6626

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 17, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions build-system-tests/scripts/mega-app-copy-files.sh
Original file line number Diff line number Diff line change
Expand Up @@ -142,9 +142,11 @@ if [[ "$FRAMEWORK" == 'vue' ]]; then
fi

if [[ "$BUILD_TOOL" == 'nuxt' ]]; then
# nuxt doesn't use the src/ directory
echo "cp templates/components/vue/nuxt/* mega-apps/${MEGA_APP_NAME}/"
cp templates/components/vue/nuxt/* mega-apps/${MEGA_APP_NAME}/
echo "cp templates/components/vue/nuxt/app.vue mega-apps/${MEGA_APP_NAME}/app/app.vue"
cp templates/components/vue/nuxt/app.vue mega-apps/${MEGA_APP_NAME}/app/app.vue

echo "cp templates/components/vue/nuxt/nuxt.config.ts mega-apps/${MEGA_APP_NAME}/nuxt.config.ts"
cp templates/components/vue/nuxt/nuxt.config.ts mega-apps/${MEGA_APP_NAME}/nuxt.config.ts
else
echo "cp templates/components/vue/App.vue mega-apps/${MEGA_APP_NAME}/src/App.vue"
cp templates/components/vue/App.vue mega-apps/${MEGA_APP_NAME}/src/App.vue
Expand Down
2 changes: 1 addition & 1 deletion build-system-tests/templates/components/vue/nuxt/app.vue
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import { Authenticator } from '@aws-amplify/ui-vue';
import '@aws-amplify/ui-vue/styles.css';

import { Amplify } from 'aws-amplify';
import awsconfig from '../../environments/auth-with-email/src/aws-exports.js';
import awsconfig from '../../../environments/auth-with-email/src/aws-exports.js';

Amplify.configure(awsconfig);
</script>
Expand Down
Loading