feat: add landing page

This commit is contained in:
Maulana Sodiqin
2025-04-26 20:32:58 +07:00
parent 86290cc820
commit b389235971
23 changed files with 6756 additions and 11 deletions
+28
View File
@@ -45,6 +45,23 @@
"testStorybookTargetName": "test-storybook",
"staticStorybookTargetName": "static-storybook"
}
},
{
"plugin": "@nx/next/plugin",
"options": {
"startTargetName": "start",
"buildTargetName": "build",
"devTargetName": "dev",
"serveStaticTargetName": "serve-static",
"buildDepsTargetName": "build-deps",
"watchDepsTargetName": "watch-deps"
}
},
{
"plugin": "@nx/playwright/plugin",
"options": {
"targetName": "e2e"
}
}
],
"generators": {
@@ -63,11 +80,22 @@
"linter": "eslint",
"unitTestRunner": "vitest"
}
},
"@nx/next": {
"application": {
"style": "none",
"linter": "eslint"
}
}
},
"release": {
"version": {
"preVersionCommand": "npx nx run-many -t build"
}
},
"targetDefaults": {
"e2e-ci--**/**": {
"dependsOn": ["^build"]
}
}
}