Skip to content

Commit

Permalink
change paths
Browse files Browse the repository at this point in the history
  • Loading branch information
YeahNotSewerSide committed Sep 10, 2023
1 parent 81be207 commit 8331ceb
Show file tree
Hide file tree
Showing 7 changed files with 6 additions and 4 deletions.
4 changes: 2 additions & 2 deletions next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ const basePath = `/${repo}`
/** @type {import('next').NextConfig} */
const nextConfig = {
output: 'export',
assetPrefix: assetPrefix,
basePath: basePath,
// assetPrefix: assetPrefix,
// basePath: basePath,
}

module.exports = nextConfig
Expand Down
3 changes: 2 additions & 1 deletion src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import Image from 'next/image'
import { Header } from '@/widgets/Header';
import { Background } from '@/widgets/Background';
import s from './styles.module.scss';
import LogoAplo from '@/public/media/logoaplo.svg';

export default function Home() {
return (
Expand All @@ -13,7 +14,7 @@ export default function Home() {
<Background>
<div className={s.about_container}>
<Image
src='/media/logoaplo.svg'
src={LogoAplo}
alt={''}
width={300}
height={300}
Expand Down
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
3 changes: 2 additions & 1 deletion src/widgets/Header/Header.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import s from './styles.module.scss';
import { FC, useEffect, useState } from 'react';
import Image from 'next/image';
import LogoAplo from '@/public/media/logoaplo.svg';
// import LogoAplo from '../../../public/media/logoaplo.svg';
// import

Expand All @@ -10,7 +11,7 @@ interface LogoProps {
const Logo: FC<LogoProps> = props => {
return (<a className={s.logo} href='/'>
<Image
src='/media/logoaplo.svg'
src={LogoAplo}
alt={''}
width={65}
height={65}
Expand Down

0 comments on commit 8331ceb

Please sign in to comment.