Skip to content

Commit

Permalink
refactor: move to src folder
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcoEscaleira committed Jan 27, 2024
1 parent d3a81ed commit bf01a7f
Show file tree
Hide file tree
Showing 14 changed files with 7 additions and 7 deletions.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { NextFont } from "@next/font/dist/types";
import { useRouter } from "next/router";
import Image from "next/image";
import Link from "next/link";
import { ThemeSwitcher } from "@/components/ThemeSwitcher";
import { ThemeSwitcher } from "src/components/ThemeSwitcher";

interface IHeaderProps {
font: NextFont;
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
6 changes: 3 additions & 3 deletions tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ const defaultTheme = require('tailwindcss/defaultTheme')

module.exports = {
content: [
'./pages/**/*.{js,ts,jsx,tsx}',
'./components/**/*.{js,ts,jsx,tsx}',
'./app/**/*.{js,ts,jsx,tsx}',
'./src/pages/**/*.{js,ts,jsx,tsx}',
'./src/components/**/*.{js,ts,jsx,tsx}',
'./src/styles/**/*.{js,ts,jsx,tsx}',
],
darkMode: 'class',
theme: {
Expand Down
6 changes: 3 additions & 3 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@
"incremental": true,
"baseUrl": ".",
"paths": {
"@/components/*": ["components/*"],
"@/pages/*": ["pages/*"],
"@/styles/*": ["styles/*"]
"@/components/*": ["src/components/*"],
"@/pages/*": ["src/pages/*"],
"@/styles/*": ["src/styles/*"]
}
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", "types.d.ts"],
Expand Down

0 comments on commit bf01a7f

Please sign in to comment.