UNPKG

create-nxtstart-app

Version:

Nxtstart is an easy to use, interactive CLI tool to bootstrap your next web-based project. The template is aimed at students to get an easy access to web development with example implementations. It is also useful for experts to speed up prototyping.

12 lines (9 loc) 335 B
import type { NextConfig } from 'next' const nextConfig: NextConfig = { // build standalone app for deployment, currently set in Dockerfile // reduces docker image size a lot output: process.env.BUILD_STANDALONE === '1' ? 'standalone' : undefined, poweredByHeader: false, reactStrictMode: true, } export default nextConfig