Skip to content

Commit

Permalink
Restore project name and remove themed logos
Browse files Browse the repository at this point in the history
  • Loading branch information
Luca committed Jan 30, 2024
1 parent 1b904d3 commit ecc568d
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 27 deletions.
2 changes: 1 addition & 1 deletion {{cookiecutter.project_dirname}}/next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const nextjsConfig = {
swcMinify: true,
rewrites: async () => [
{
source: '/frontend/health',
source: '/{{ cookiecutter.project_slug }}/health',
destination: '/api/health'
}
]
Expand Down
2 changes: 1 addition & 1 deletion {{cookiecutter.project_dirname}}/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "frontend",
"name": "{{ cookiecutter.project_slug }}",
"version": "1.0.0",
"private": true,
"scripts": {
Expand Down
12 changes: 0 additions & 12 deletions {{cookiecutter.project_dirname}}/public/images/logo-dark.svg

This file was deleted.

12 changes: 0 additions & 12 deletions {{cookiecutter.project_dirname}}/public/images/logo-light.svg

This file was deleted.

2 changes: 1 addition & 1 deletion {{cookiecutter.project_dirname}}/src/components/Navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const Navbar = () => {
return (
<nav className={styles.navbar}>
<Image
src={`/images/logo-light.svg`}
src={`/images/logo.svg`}
width='110'
height='48'
alt={'sito logo'}
Expand Down

0 comments on commit ecc568d

Please sign in to comment.