mirror of
https://github.com/coder/coder.git
synced 2025-03-15 19:19:58 +00:00
9 lines
160 B
JavaScript
9 lines
160 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
output: "export",
|
|
reactStrictMode: true,
|
|
trailingSlash: true,
|
|
};
|
|
|
|
module.exports = nextConfig;
|