mirror of
https://github.com/katanemo/plano.git
synced 2026-06-17 15:25:17 +02:00
Merge branch 'musa/www' of https://github.com/katanemo/archgw into musa/www
This commit is contained in:
commit
185f9444b1
6 changed files with 41 additions and 2 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
|
@ -151,4 +151,5 @@ packages/*/node_modules/
|
|||
apps/*/.next/
|
||||
apps/*/out/
|
||||
apps/*/dist/
|
||||
./node_modules
|
||||
./node_modules
|
||||
.vercel
|
||||
|
|
|
|||
1
apps/.gitignore
vendored
Normal file
1
apps/.gitignore
vendored
Normal file
|
|
@ -0,0 +1 @@
|
|||
.vercel
|
||||
17
apps/docs/next.config.ts
Normal file
17
apps/docs/next.config.ts
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
import type { NextConfig } from "next";
|
||||
|
||||
const nextConfig: NextConfig = {
|
||||
transpilePackages: [
|
||||
"@katanemo/ui",
|
||||
"@katanemo/shared-styles",
|
||||
"@katanemo/tailwind-config",
|
||||
"@katanemo/tsconfig",
|
||||
],
|
||||
experimental: {
|
||||
// Ensure workspace packages are handled correctly
|
||||
externalDir: true,
|
||||
},
|
||||
};
|
||||
|
||||
export default nextConfig;
|
||||
|
||||
|
|
@ -7,6 +7,10 @@ const nextConfig: NextConfig = {
|
|||
"@katanemo/tailwind-config",
|
||||
"@katanemo/tsconfig",
|
||||
],
|
||||
experimental: {
|
||||
// Ensure workspace packages are handled correctly
|
||||
externalDir: true,
|
||||
},
|
||||
};
|
||||
|
||||
export default nextConfig;
|
||||
|
|
|
|||
|
|
@ -8,6 +8,18 @@
|
|||
".": {
|
||||
"types": "./src/index.ts",
|
||||
"default": "./src/index.ts"
|
||||
},
|
||||
"./lib/utils": {
|
||||
"types": "./src/lib/utils.ts",
|
||||
"default": "./src/lib/utils.ts"
|
||||
},
|
||||
"./components/*": {
|
||||
"types": "./src/components/*.tsx",
|
||||
"default": "./src/components/*.tsx"
|
||||
},
|
||||
"./components/ui/*": {
|
||||
"types": "./src/components/ui/*.tsx",
|
||||
"default": "./src/components/ui/*.tsx"
|
||||
}
|
||||
},
|
||||
"scripts": {
|
||||
|
|
|
|||
|
|
@ -3,7 +3,11 @@
|
|||
"compilerOptions": {
|
||||
"outDir": "./dist",
|
||||
"rootDir": "./src",
|
||||
"jsx": "react-jsx"
|
||||
"jsx": "react-jsx",
|
||||
"baseUrl": "./src",
|
||||
"paths": {
|
||||
"@/*": ["./*"]
|
||||
}
|
||||
},
|
||||
"include": ["src/**/*"],
|
||||
"exclude": ["node_modules", "dist"]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue