This is a new Nuxt2 project with target: static
(SSG) upgraded to Nuxt Bridge in order to use Vue3 syntax, Vite and most of the Nuxt3 features.
I run the build command npm run generate
successfully on my own system with Node 14.17.3. This script triggers "nuxi generate" (nuxi is the Nuxt3 CLI).
On Netlify the generate script seems to fail because it cannot find Nuxi (?).
Here is the contents of package.json:
"scripts": {
"dev": "nuxi dev",
"build": "nuxi build",
"start": "node .output/server/index.mjs",
"generate": "nuxi generate"
},
"dependencies": {
"@nuxt/kit": "npm:@nuxt/kit-edge@^3.0.0-27277498.850ef69",
"@nuxtjs/i18n": "^7.2.0",
"core-js": "^3.15.1",
"nuxt-edge": "latest"
},
"devDependencies": {
"@intlify/vue-i18n-loader": "^1.1.0",
"@nuxt/bridge": "npm:@nuxt/bridge-edge@^3.0.0-27277498.850ef69",
"hgrid-css": "^0.7.1-beta",
"sass": "^1.43.4",
"sass-loader": "^10.1.1"
}
Netlify error output:
3:09:23 PM: $ npm run generate
3:09:23 PM: > my-project-name@1.0.0 generate
3:09:23 PM: > nuxi generate
3:09:23 PM: [log] Nuxt CLI v3.0.0-27277498.850ef69
3:09:27 PM: [error] ENOENT: no such file or directory, open '/opt/build/repo/.nuxt/tsconfig.json'
3:09:27 PM:
3:09:27 PM: ────────────────────────────────────────────────────────────────
3:09:27 PM: "build.command" failed
3:09:27 PM: ────────────────────────────────────────────────────────────────
3:09:27 PM:
3:09:27 PM: Error message
3:09:27 PM: Command failed with exit code 1: npm run generate
Not sure what the tsconfig.json is doing in the error message, I use plain JS and have no such file.
What do I have to include in order to get Netlify to use or find the Nuxi CLI correctly?
Other tips? Thanks!