Skip to content

Commit 0b77182

Browse files
committed
ref: update code structure
1 parent e12f2b9 commit 0b77182

File tree

100 files changed

+39
-36
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

100 files changed

+39
-36
lines changed

deploy/.dockerignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
node_modules
2+
.next
3+
.git
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

app/(blog)/blog/[slug]/layout.tsx renamed to src/app/(blog)/blog/[slug]/layout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { blogSource } from "@/modules/blogs/source";
1+
import { blogSource } from "@/src/modules/blogs/source";
22
import { notFound } from "next/navigation";
33
import type { ReactNode } from "react";
44

app/(blog)/blog/[slug]/page.tsx renamed to src/app/(blog)/blog/[slug]/page.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
import { appConfig } from "@/app.config";
2-
import { blogAuthors } from "@/modules/blogs/constant";
3-
import { blogSource } from "@/modules/blogs/source";
1+
import { appConfig } from "@/src/app.config";
2+
import { blogAuthors } from "@/src/modules/blogs/constant";
3+
import { blogSource } from "@/src/modules/blogs/source";
44
import { DocsBody } from "fumadocs-ui/page";
55
import type { Metadata } from "next";
66
import { notFound } from "next/navigation";

app/(blog)/blog/page.tsx renamed to src/app/(blog)/blog/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { appConfig } from "@/app.config";
1+
import { appConfig } from "@/src/app.config";
22
import type { Metadata } from "next";
33

44
export const metadata: Metadata = {

app/(blog)/blog/tags/[tag]/page.tsx renamed to src/app/(blog)/blog/tags/[tag]/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { appConfig } from "@/app.config";
1+
import { appConfig } from "@/src/app.config";
22
import type { Metadata } from "next";
33

44
export const metadata: Metadata = {

app/(blog)/blog/tags/page.tsx renamed to src/app/(blog)/blog/tags/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { appConfig } from "@/app.config";
1+
import { appConfig } from "@/src/app.config";
22
import type { Metadata } from "next";
33

44
export const metadata: Metadata = {

0 commit comments

Comments
 (0)