@nadeshikon/plugin-nextjs
Version:
Run Next.js seamlessly on Netlify
30 lines (29 loc) • 830 B
JSON
{
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "apps/demo-monorepo-e2e/src",
"projectType": "application",
"targets": {
"e2e": {
"executor": "@nrwl/cypress:cypress",
"options": {
"cypressConfig": "apps/demo-monorepo-e2e/cypress.json",
"devServerTarget": "demo-monorepo:serve:development",
"testingType": "e2e"
},
"configurations": {
"production": {
"devServerTarget": "demo-monorepo:serve:production"
}
}
},
"lint": {
"executor": "@nrwl/linter:eslint",
"outputs": ["{options.outputFile}"],
"options": {
"lintFilePatterns": ["apps/demo-monorepo-e2e/**/*.{js,ts}"]
}
}
},
"tags": [],
"implicitDependencies": ["demo-monorepo"]
}