forked from kamp-us/monorepo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
17,885 additions
and
24,811 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# Disable `workspace:*` syntax for defining workspace package dependencies. | ||
# | ||
# See: https://pnpm.io/npmrc#save-workspace-protocol | ||
save-workspace-protocol=false | ||
|
||
# Link locally available packages to `node_modules` instead of downloading | ||
# from registry. | ||
# | ||
# See: https://pnpm.io/npmrc#link-workspace-packages | ||
link-workspace-packages=true | ||
|
||
# Prefer workspace packages over packages on the registry even if there is | ||
# a newer version of the workspace package is available on registry. | ||
# | ||
# Note: Only useful if `save-workspace-protocol=false`, otherwise | ||
# `workspace:*` syntax will handle this case anyway. | ||
# | ||
# See: https://pnpm.io/npmrc#prefer-workspace-packages | ||
prefer-workspace-packages=true | ||
|
||
# hoist=false | ||
public-hoist-pattern[]=*ui-next* | ||
# node-linker=hoisted |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,10 @@ | ||
import { withContentlayer } from "next-contentlayer"; | ||
|
||
/** @type {import('next').NextConfig} */ | ||
const config = { | ||
reactStrictMode: true, | ||
swcMinify: true, | ||
transpilePackages: ["@kampus/sozluk-content"], | ||
}; | ||
|
||
export default config; | ||
export default withContentlayer(nextConfig); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
@tailwind base; | ||
@tailwind components; | ||
@tailwind utilities; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.