Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
H
Hire-Guru
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Vigneswaran Shanmugam
Hire-Guru
Commits
f446c644
Commit
f446c644
authored
Apr 08, 2026
by
AravindR-K
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat: initialize Angular frontend project with build and deployment configurations
parent
71d4a53e
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
14 deletions
+6
-14
Frontend/angular.json
Frontend/angular.json
+1
-0
Frontend/package.json
Frontend/package.json
+3
-1
Frontend/vercel.json
Frontend/vercel.json
+2
-13
No files found.
Frontend/angular.json
View file @
f446c644
...
...
@@ -42,6 +42,7 @@
"build"
:
{
"builder"
:
"@angular/build:application"
,
"options"
:
{
"outputPath"
:
"dist/quiz-app"
,
"browser"
:
"src/main.ts"
,
"tsConfig"
:
"tsconfig.app.json"
,
"assets"
:
[
...
...
Frontend/package.json
View file @
f446c644
...
...
@@ -9,7 +9,9 @@
"test"
:
"ng test"
},
"private"
:
true
,
"packageManager"
:
"npm@10.9.0"
,
"engines"
:
{
"node"
:
">=18.0.0"
},
"dependencies"
:
{
"@angular/common"
:
"^21.2.0"
,
"@angular/compiler"
:
"^21.2.0"
,
...
...
Frontend/vercel.json
View file @
f446c644
{
"buildCommand"
:
"npm run build"
,
"outputDirectory"
:
"dist/quiz-app/browser"
,
"routes"
:
[
{
"src"
:
"/assets/(.*)"
,
"dest"
:
"/assets/$1"
},
{
"src"
:
"/(.*
\\
.(js|css|png|jpg|svg|ico))"
,
"dest"
:
"/$1"
},
{
"src"
:
"/(.*)"
,
"dest"
:
"/index.html"
}
"rewrites"
:
[
{
"source"
:
"/(.*)"
,
"destination"
:
"/index.html"
}
]
}
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment