Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

BAH-2411 | Add. Missing Favicon and Header #112

Merged
merged 2 commits into from
Jun 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
<head>
<meta charset="utf-8">
<title>Implementer Interface</title>
<link href="/implementer-interface/favicon.ico" rel="icon" type="image/x-icon">
<link href="/implementer-interface/styles.css" rel="stylesheet" type="text/css"/>
</head>
<body>
Expand Down
Binary file added public/favicon.ico
Binary file not shown.
2 changes: 2 additions & 0 deletions src/common/Dashboard.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
import React from 'react';
import { Link } from 'react-router-dom';
import FormBuilderHeader from 'form-builder/components/FormBuilderHeader.jsx';

const Dashboard = () =>
<div>
<FormBuilderHeader />
<div className="form-builder-link">
<Link to="form-builder">
<i className="fa fa-user-secret"></i>
Expand Down
5 changes: 2 additions & 3 deletions webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,8 @@ module.exports = {
new webpack.HotModuleReplacementPlugin(),
new ExtractTextPlugin('styles.css', { allChunks: true }),
new CopyWebpackPlugin([
{
from: path.join(__dirname, 'styles/fonts'), to: path.join(__dirname, 'dist/fonts'),
},
{ from: path.join(__dirname, 'styles/fonts'), to: path.join(__dirname, 'dist/fonts') },
{ from: path.join(__dirname, './public/favicon.ico'), to: path.join(__dirname, 'dist/favicon.ico') }
], { copyUnmodified: true }
),
new StyleLintPlugin(),
Expand Down
Loading