Last active
March 2, 2023 20:42
-
-
Save coreysyms/aa7e43fc4a1b8543d4db983c3ae77ed0 to your computer and use it in GitHub Desktop.
Nuxt 3 SSR Deploy for AWS Elastic Beanstalk (ELB)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// https://nuxt.com/docs/api/configuration/nuxt-config | |
export default defineNuxtConfig({ | |
app: {}, | |
"nitro":{ | |
"preset":"node-server", | |
} | |
}) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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": { | |
"@types/node": "^18.14.2", | |
"nuxt": "^3.2.0" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment