Skip to content

Commit 0896552

Browse files
authored
slow build (#13)
* reproduce build issues * less pages * less pages * try build without renoun * disable vercel.json * update all deps
1 parent 45342f5 commit 0896552

File tree

278 files changed

+13749
-1335
lines changed

Some content is hidden

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

278 files changed

+13749
-1335
lines changed

_vercel.json

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"buildCommand": "pnpm nextbuild"
3+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
1+
---
2+
title: Introduction
3+
description: This section provides an overview of Introduction.
4+
---
5+
6+
Lorem ipsum dolor sit amet consectetur adipisicing elit. Numquam iste dolorum tempore consectetur explicabo tempora provident quia maxime, molestiae, facilis aperiam et, error illum vel ullam? Quis architecto dolore ullam
7+
8+
## Getting Started
9+
10+
To begin using the Documentation Template, follow these simple steps:
11+
12+
- Start by cloning the repository to your local machine.
13+
14+
Lorem ipsum dolor sit amet consectetur adipisicing elit. Reprehenderit quae iure nulla deserunt dolore quam pariatur minus sapiente accusantium. Optio, necessitatibus sequi. Veritatis, aspernatur? Possimus quis repellat eum vitae eveniet.
15+
16+
## Blockquotes
17+
18+
Blockquotes are useful for emphasizing key points or quoting external sources:
19+
20+
> "Documentation is a love letter that you write to your future self." - Damian Conway
21+
22+
Feel free to use blockquotes to highlight important information or quotes relevant to your documentation.
23+
24+
## Code Examples with switch
25+
26+
Here a custom tab component from shadcn ui is used.
27+
28+
<Tabs defaultValue="js" className="pt-5 pb-1">
29+
<TabsList className="">
30+
<TabsTrigger value="js">layout.jsx</TabsTrigger>
31+
<TabsTrigger value="ts">layout.tsx</TabsTrigger>
32+
</TabsList>
33+
<TabsContent value="js">
34+
```jsx {7} showLineNumbers
35+
import ThemeProvider from './theme-provider'
36+
37+
export default function RootLayout({ children }) {
38+
return (
39+
<html>
40+
<body className="container">
41+
<ThemeProvider>{children}</ThemeProvider>
42+
</body>
43+
</html>
44+
)
45+
}
46+
```
47+
</TabsContent>
48+
<TabsContent value="ts">
49+
```tsx {11} showLineNumbers
50+
import ThemeProvider from './theme-provider'
51+
52+
export default function RootLayout({
53+
children,
54+
}: {
55+
children: React.ReactNode,
56+
}) {
57+
return (
58+
<html>
59+
<body className="container">
60+
<ThemeProvider>{children}</ThemeProvider>
61+
</body>
62+
</html>
63+
)
64+
}
65+
```
66+
</TabsContent>
67+
</Tabs>
68+
69+
## Conclusion
70+
71+
Thank you for choosing the Documentation Template for your project. Whether you're documenting software, APIs, or processes, we're here to support you in creating clear and effective documentation. Happy documenting!
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
---
2+
title: Gatsby
3+
description: Gatsby guide for our application.
4+
---
5+
6+
## Overview
7+
8+
Welcome to the Gatsby guide. Here, you'll find all the information you need to get started.
9+
10+
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla ut metus ligula. Proin vehicula velit quis justo facilisis, in facilisis dolor interdum.
11+
12+
## Prerequisites
13+
14+
Before proceeding, ensure you have the following:
15+
16+
- Node.js installed
17+
- Basic knowledge of command-line interface (CLI)
18+
- A code editor (e.g., VSCode)
19+
20+
## Installation Steps
21+
22+
1. **Clone the Repository**:
23+
Clone the repository using the following command:
24+
25+
```bash
26+
git clone https://github.com/your-repo/your-project.git
27+
```
28+
29+
2. **Navigate to the Project Directory**:
30+
Use the `cd` command to navigate to your project directory:
31+
32+
```bash
33+
cd your-project
34+
```
35+
36+
3. **Install Dependencies**:
37+
Install the required dependencies using npm or yarn:
38+
39+
```bash
40+
npm install
41+
# or
42+
yarn install
43+
```
44+
45+
## Additional Information
46+
47+
For more details, please refer to our official [documentation](#).
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,79 @@
1+
---
2+
title: Installation
3+
description: Installation guide for our application.
4+
---
5+
6+
To get started with our application, follow these simple steps:
7+
Lorem ipsum dolor sit amet consectetur adipisicing elit. Numquam iste dolorum tempore consectetur explicabo tempora provident quia maxime, molestiae, facilis aperiam et, error illum vel ullam? Quis architecto dolore ullam
8+
9+
## Prerequisites
10+
11+
Before installing our application, make sure you have the following:
12+
13+
- Node.js installed on your machine
14+
15+
<Note title="Remember" type="danger">
16+
Lorem ipsum dolor sit amet consectetur adipisicing elit Numquam iste dolorum
17+
tempore consectetur explicabo.
18+
</Note>
19+
20+
## Installation Steps
21+
22+
<Stepper>
23+
<StepperItem title="Clone the Repository">
24+
Start by creating a new React project using vite:
25+
26+
```bash
27+
git clone https://github.com/your-repo/your-project.git
28+
```
29+
30+
</StepperItem>
31+
<StepperItem title="Navigate to the Project Directory">
32+
Install `tailwindcss` and its peer dependencies, then add your `tailwind.config.js` and postcss.config.js files:
33+
34+
```tsx
35+
import "@/styles/globals.css"
36+
37+
import { Inter as FontSans } from "next/font/google"
38+
import { cn } from "@/lib/utils"
39+
40+
const fontSans = FontSans({
41+
subsets: ["latin"],
42+
variable: "--font-sans",
43+
})
44+
45+
export default function RootLayout({ children }: RootLayoutProps) {
46+
return (
47+
<html lang="en" suppressHydrationWarning>
48+
<head />
49+
<body
50+
className={cn(
51+
"bg-background min-h-screen font-sans antialiased",
52+
fontSans.variable,
53+
)}
54+
>
55+
...
56+
</body>
57+
</html>
58+
)
59+
}
60+
```
61+
62+
</StepperItem>
63+
64+
<StepperItem title="Install Dependencies">
65+
Install the necessary dependencies using npm or yarn.
66+
67+
```bash
68+
npm install
69+
# or
70+
yarn install
71+
```
72+
73+
</StepperItem>
74+
75+
</Stepper>
76+
77+
## Additional Information
78+
79+
For more detailed instructions and troubleshooting tips, refer to our [documentation](#).
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
---
2+
title: Laravel
3+
description: Laravel guide for our application.
4+
---
5+
6+
## Overview
7+
8+
Welcome to the Laravel guide. Here, you'll find all the information you need to get started.
9+
10+
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla ut metus ligula. Proin vehicula velit quis justo facilisis, in facilisis dolor interdum.
11+
12+
## Prerequisites
13+
14+
Before proceeding, ensure you have the following:
15+
16+
- Node.js installed
17+
- Basic knowledge of command-line interface (CLI)
18+
- A code editor (e.g., VSCode)
19+
20+
## Installation Steps
21+
22+
1. **Clone the Repository**:
23+
Clone the repository using the following command:
24+
25+
```bash
26+
git clone https://github.com/your-repo/your-project.git
27+
```
28+
29+
2. **Navigate to the Project Directory**:
30+
Use the `cd` command to navigate to your project directory:
31+
32+
```bash
33+
cd your-project
34+
```
35+
36+
3. **Install Dependencies**:
37+
Install the required dependencies using npm or yarn:
38+
39+
```bash
40+
npm install
41+
# or
42+
yarn install
43+
```
44+
45+
## Additional Information
46+
47+
For more details, please refer to our official [documentation](#).
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
---
2+
title: React
3+
description: React guide for our application.
4+
---
5+
6+
## Overview
7+
8+
Welcome to the React guide. Here, you'll find all the information you need to get started.
9+
10+
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla ut metus ligula. Proin vehicula velit quis justo facilisis, in facilisis dolor interdum.
11+
12+
## Prerequisites
13+
14+
Before proceeding, ensure you have the following:
15+
16+
- Node.js installed
17+
- Basic knowledge of command-line interface (CLI)
18+
- A code editor (e.g., VSCode)
19+
20+
## Installation Steps
21+
22+
1. **Clone the Repository**:
23+
Clone the repository using the following command:
24+
25+
```bash
26+
git clone https://github.com/your-repo/your-project.git
27+
```
28+
29+
2. **Navigate to the Project Directory**:
30+
Use the `cd` command to navigate to your project directory:
31+
32+
```bash
33+
cd your-project
34+
```
35+
36+
3. **Install Dependencies**:
37+
Install the required dependencies using npm or yarn:
38+
39+
```bash
40+
npm install
41+
# or
42+
yarn install
43+
```
44+
45+
## Additional Information
46+
47+
For more details, please refer to our official [documentation](#).
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
1+
---
2+
title: Project Structure
3+
description: This section provides an overview of Project Structure.
4+
---
5+
6+
Lorem ipsum dolor sit amet consectetur adipisicing elit. Numquam iste dolorum tempore consectetur explicabo tempora provident quia maxime, molestiae, facilis aperiam et, error illum vel ullam? Quis architecto dolore ullam
7+
8+
## Overview
9+
10+
Welcome to the `Project Structure` section. Here, you'll find all the information you need to get started with our application.
11+
12+
## Content
13+
14+
- **Introduction**: Get to know the basics.
15+
- **Installation**: Step-by-step guide to set up the application.
16+
- **Configuration**: Learn how to configure the application.
17+
- **Examples**: Check out some practical examples.
18+
- **FAQ**: Frequently Asked Questions.
19+
20+
## Getting Started
21+
22+
### Step 1: Introduction
23+
24+
The `Project Structure` section introduces you to the core concepts and functionalities of our application. It is designed to help you understand the essentials and get started quickly.
25+
26+
### Step 2: Installation
27+
28+
Follow these steps to install the necessary components:
29+
30+
1. **Install Node.js**: Ensure you have Node.js installed.
31+
2. **Clone the Repository**: Clone our GitHub repository to your local machine.
32+
```bash
33+
git clone https://github.com/your-repo/your-project.git
34+
```
35+
3. **Install Dependencies**: Navigate to the project directory and install dependencies.
36+
```bash
37+
cd your-project
38+
npm install
39+
```
40+
41+
### Step 3: Configuration
42+
43+
Configure your application by creating a `config.json` file and setting the required parameters.
44+
45+
### Step 4: Examples
46+
47+
Here are some examples to help you get started:
48+
49+
```jsx
50+
// Basic usage example
51+
import React from "react"
52+
import { ExampleComponent } from "your-library"
53+
54+
function App() {
55+
return (
56+
<div>
57+
<ExampleComponent />
58+
</div>
59+
)
60+
}
61+
62+
export default App
63+
```
64+
65+
### Step 5: FAQ
66+
67+
Find answers to common questions in our [FAQ section](#).
68+
69+
## Conclusion
70+
71+
The `Project Structure` section is your starting point for exploring the application. Follow the steps above to get started quickly and easily.

0 commit comments

Comments
 (0)