Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
boco-frontend
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
idatt2106_2022_02
boco-frontend
Commits
5ea1bf96
Commit
5ea1bf96
authored
2 years ago
by
Erik Borgeteien Hansen
Browse files
Options
Downloads
Patches
Plain Diff
add favicon and title
parent
da615eec
No related branches found
Branches containing commit
No related tags found
1 merge request
!65
Add favicon and title
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
public/favicon.ico
+0
-0
0 additions, 0 deletions
public/favicon.ico
public/index.html
+17
-0
17 additions, 0 deletions
public/index.html
vue.config.js
+6
-5
6 additions, 5 deletions
vue.config.js
with
23 additions
and
5 deletions
public/favicon.ico
0 → 100644
+
0
−
0
View file @
5ea1bf96
15 KiB
This diff is collapsed.
Click to expand it.
public/index.html
0 → 100644
+
17
−
0
View file @
5ea1bf96
<!DOCTYPE html>
<html
lang=
"en"
>
<head>
<meta
charset=
"utf-8"
>
<meta
http-equiv=
"X-UA-Compatible"
content=
"IE=edge"
>
<meta
name=
"viewport"
content=
"width=device-width,initial-scale=1.0"
>
<link
rel=
"icon"
href=
"<%= BASE_URL %>favicon.ico"
>
<title><
%=
htmlWebpackPlugin.options.title
%
></title>
</head>
<body>
<noscript>
<strong>
We're sorry but
<
%=
htmlWebpackPlugin.options.title
%
>
doesn't work properly without JavaScript enabled. Please enable it to continue.
</strong>
</noscript>
<div
id=
"app"
></div>
<!-- built files will be auto injected -->
</body>
</html>
This diff is collapsed.
Click to expand it.
vue.config.js
+
6
−
5
View file @
5ea1bf96
const
{
defineConfig
}
=
require
(
"
@vue/cli-service
"
);
module
.
exports
=
defineConfig
({
transpileDependencies
:
true
,
pluginOptions
:
{
vuetify
:
{
// https://github.com/vuetifyjs/vuetify-loader/tree/next/packages/vuetify-loader
}
,
chainWebpack
:
(
config
)
=>
{
config
.
plugin
(
"
html
"
).
tap
((
args
)
=>
{
args
[
0
].
title
=
"
Borrow Company
"
;
return
args
;
}
);
},
});
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment