go.charczuk.com@v0.0.0-20240327042549-bc490516bd1a/projects/chirp/pkg/static/_nextjs/next.config.js (about) 1 /** 2 * Copyright (c) 2024 - Present. Will Charczuk. All rights reserved. 3 * Use of this source code is governed by a MIT license that can be found in the LICENSE file at the root of the repository. 4 */ 5 /** 6 * @type {import('next').NextConfig} 7 */ 8 const nextConfig = { 9 output: 'export', 10 // Optional: Add a trailing slash to all paths `/about` -> `/about/` 11 // trailingSlash: true, 12 // Optional: Change the output directory `out` -> `dist` 13 distDir: '_dist', 14 } 15 16 module.exports = nextConfig