mirror of
https://github.com/acid-info/logos-next-tailwind-template.git
synced 2026-08-27 15:11:13 +00:00
master
Logos Next.js + TailwindCSS Template
A starter template built with Next.js and TailwindCSS.
Getting Started
Install dependencies and run the development server
pnpm install
pnpm dev
Production build and start
pnpm build
pnpm start
Static export
To enable static export, update next.config.js:
// next.config.js
module.exports = () => {
const plugins = [withBundleAnalyzer]
return plugins.reduce((acc, next) => next(acc), {
// for static builds
output: 'export',
...
Then build the project:
pnpm build
# Run any web server you prefer and host the /out directory.
# Below is an example using http-server (install it globally first):
http-server out
Languages
TypeScript
60.4%
JavaScript
23.9%
CSS
15.7%