This template provides a starting point for building Next.js apps with Tailwind CSS, TypeScript and Three.js.
# Clone the project
git clone https://github.com/whosramoss/nt3/
# Go to the project directory
cd nt3
# Install dependencies
npm install
# Start the server
npm run dev- Before generating the build, don't forget to update the layout file and set
isLocalMetadata = false. - To generate a static compilation, the next.config.mjs file must have the object below :
const staticbuild = {
distDir: 'build',
output: 'export',
trailingSlash: true,
}- Run the command:
npm run buildsrc/
├── app/
│ ├── manifest.ts
│ ├── layout.tsx
│ ├──page.tsx
│ └── [lang]/
│ └── page.tsx/
├── modules/
│ └── {module-name}/
│ ├── components/
│ ├── services/
│ ├── schemas/
│ └── data/
└── shared/
├── ui/
├── styles/
├── providers/
├── utils/
└── hooks/If you want to contribute to nt3, please make sure to review the contribution guidelines. This project makes use of GitHub issues for
tracking requests and bugs.
MIT License. LICENSE
Gabriel Ramos (@whosramoss)