Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/spotandjake/nextjs-app
A template for Next.js setup with typescript, tailwind, preact and eslint.
https://github.com/spotandjake/nextjs-app
Last synced: 23 days ago
JSON representation
A template for Next.js setup with typescript, tailwind, preact and eslint.
- Host: GitHub
- URL: https://github.com/spotandjake/nextjs-app
- Owner: spotandjake
- License: mit
- Created: 2024-05-30T17:36:10.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2024-05-31T00:47:01.000Z (5 months ago)
- Last Synced: 2024-05-31T21:10:52.740Z (5 months ago)
- Language: TypeScript
- Size: 136 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## Getting Started
This project is a simple starting point for any next.js applications. It is configured to use `tailwind css`, `typescript`, `next.js`, `eslint` and `prettier`.
In order to get started, fork this project, clone the forked repository and run `npm install`, then run `npm run dev` to start the development server.
## Commands
- `npm run dev` - Runs the next.js development process
- `npm run build` - Runs the next.js build process
- `npm run start` - Starts the next.js server in production mode
- `npm run lint` - Runs the linter
- `npm run format` - Runs prettier to format code## Layout
* `pages` - This folder contains the source code for each page with `_app.tsx` and `_document.tsx` being special files that control global page content.
* `styles` - This folder contains all styles for the project
* `components` - This folder contains all components for the project
* `_Static` - This folder will contain any static code or files for the project