serpa
CDCloudflare Developers
•Created by serpa on 10/18/2023 in #functions
Hey guys, I have a question.
tree (this is just a sample nextjs website)
.
├── app
│ ├── about
│ │ ├── error.tsx
│ │ ├── layout.tsx
│ │ ├── page.tsx
│ │ └── styles.module.css
│ ├── components
│ │ ├── Navbar.tsx
│ │ └── Search.tsx
│ ├── favicon.ico
│ ├── globals.css
│ ├── layout.tsx
│ ├── page.tsx
│ ├── users
│ │ ├── page.tsx
│ │ └── [userId]
│ │ ├── components
│ │ │ └── UserPosts.tsx
│ │ ├── not-found.tsx
│ │ └── page.tsx
│ └── _worker.js
├── lib
│ ├── getAllUsers.tsx
│ ├── getUserPosts.tsx
│ └── getUser.tsx
├── next.config.js
├── next-env.d.ts
├── package.json
├── package-lock.json
├── postcss.config.js
├── public
│ ├── next.svg
│ └── vercel.svg
├── README.md
├── tailwind.config.ts
├── tsconfig.json
└── types.d.ts
.
├── app
│ ├── about
│ │ ├── error.tsx
│ │ ├── layout.tsx
│ │ ├── page.tsx
│ │ └── styles.module.css
│ ├── components
│ │ ├── Navbar.tsx
│ │ └── Search.tsx
│ ├── favicon.ico
│ ├── globals.css
│ ├── layout.tsx
│ ├── page.tsx
│ ├── users
│ │ ├── page.tsx
│ │ └── [userId]
│ │ ├── components
│ │ │ └── UserPosts.tsx
│ │ ├── not-found.tsx
│ │ └── page.tsx
│ └── _worker.js
├── lib
│ ├── getAllUsers.tsx
│ ├── getUserPosts.tsx
│ └── getUser.tsx
├── next.config.js
├── next-env.d.ts
├── package.json
├── package-lock.json
├── postcss.config.js
├── public
│ ├── next.svg
│ └── vercel.svg
├── README.md
├── tailwind.config.ts
├── tsconfig.json
└── types.d.ts
4 replies
CDCloudflare Developers
•Created by serpa on 10/18/2023 in #functions
Hey guys, I have a question.
next.config.js
const exp = require('constants')
/** @type {import('next').NextConfig} */
const nextConfig = {
output: 'export',
distDir: 'dist'
}
module.exports = nextConfig
next.config.js
const exp = require('constants')
/** @type {import('next').NextConfig} */
const nextConfig = {
output: 'export',
distDir: 'dist'
}
module.exports = nextConfig
4 replies