Possible to deploy an Nuxt 3 Web Apps from Git using Amplify ?

0

Hi all , Our team developed an web apps using Nuxt 3 with MongoDB and would like to deploy it to AWS with serverless architecture. Is it possible to use Amplify as we got stucks in setting up the backend part during the deployment. Highly appreciate if anyone can give me some guideline or direction. Many thanks.

package.json
{
  "private": true,
  "scripts": {
    "build": "nuxt build",
    "dev": "nuxt dev",
    "generate": "nuxt generate",
    "preview": "nuxt preview",
    "postinstall": "nuxt prepare",
    "start": "node .output/server/index.mjs"
  },
  "devDependencies": {
    "mongoose": "^6.9.0",
    "mongoose-bcrypt": "^1.10.1",
    "nuxt": "^3.1.1"
  },
  "dependencies": {
    "@mdi/font": "^7.1.96",
    "@pinia/nuxt": "^0.4.6",
    "apexcharts": "^3.37.0",
    "moment": "^2.29.4",
    "pinia": "^2.0.29",
    "random": "^4.1.0",
    "sass": "^1.58.0",
    "vue-i18n": "^9.2.2",
    "vue-tabler-icons": "^2.20.0",
    "vue-template-compiler": "^2.7.14",
    "vue-tradingview-widgets": "^1.2.4",
    "vue3-apexcharts": "^1.4.1",
    "vue3-marquee": "^3.1.2",
    "vuetify": "^3.1.3"
  }
}
profile picture
asked 10 months ago786 views
2 Answers
1

Amplify supports Vue JS, so it can probably be used.
https://aws.amazon.com/jp/blogs/mobile/amplify-javascript-releases-support-for-vue-3/

This tutorial may possibly be useful to you.
https://docs.amplify.aws/start/q/integration/vue/

profile picture
EXPERT
answered 10 months ago
0

Sorry for keep asking but may I have more idea on how to setup the build setting during deployment so the app deploy to amplify is not static but running an apps to handle request dynamically as the setting i was using just make the apps build in static. Thanks again for everyone help.

Enter image description here

profile picture
answered 10 months ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions