Skip to content

Commit 56a8525

Browse files
committed
Update Paths
1 parent b64ead9 commit 56a8525

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

next.config.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ const withPWA = nextPwa({
1111
const config = {
1212
reactStrictMode: true,
1313
output: "export", // Ensures it works with static export
14-
basePath: "/Chords-Web",
14+
basePath: "/",
1515
assetPrefix: "/Chords-Web/",
1616
images: {
1717
unoptimized: true,

public/manifest.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
11
{
22
"name": "Chords",
33
"short_name": "Chords",
4-
"start_url": "/Chords-Web/",
4+
"start_url": "/",
55
"display": "standalone",
66
"icons": [
77
{
8-
"src": "/Chords-Web/chords logo (192x192 px).png",
8+
"src": "/chords logo (192x192 px).png",
99
"sizes": "192x192",
1010
"type": "image/png"
1111
},
1212
{
13-
"src": "/Chords-Web/chords logo (512x512 px).png",
13+
"src": "/chords logo (512x512 px).png",
1414
"sizes": "512x512",
1515
"type": "image/png"
1616
}
1717
],
1818
"screenshots": [
1919
{
20-
"src": "/Chords-Web/screenshot-chords.png",
20+
"src": "/screenshot-chords.png",
2121
"sizes": "1280x720",
2222
"type": "image/png",
2323
"form_factor": "wide"

src/app/layout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ export default function RootLayout({
4545
return (
4646
<html lang="en" suppressHydrationWarning>
4747
<head>
48-
<link rel="manifest" href="/Chords-Web/manifest.json" /> {/* ✅ Added manifest */}
48+
<link rel="manifest" href="/manifest.json" />
4949
</head>
5050
<body
5151
className={cn(

src/components/DataPass.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import Steps from "./Steps";
55
import React, { useState, useCallback, useRef } from "react";
66
import Canvas from "./Canvas";
77
import Navbar from "./Navbar"; // Import the Navbar
8-
import FFT from "./FFT"; // Import the Navbar
8+
import FFT from "./FFT"; // Import the FFT
99

1010
export type BitSelection = 10 | 12 | 14 | 16;
1111

0 commit comments

Comments
 (0)