mirror of
https://github.com/coder/coder.git
synced 2025-07-03 16:13:58 +00:00
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Atif Ali <atif@coder.com>
9 lines
163 B
JavaScript
9 lines
163 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
output: "export",
|
|
reactStrictMode: true,
|
|
trailingSlash: true,
|
|
};
|
|
|
|
module.exports = nextConfig;
|