12 lines
214 B
JavaScript
12 lines
214 B
JavaScript
// @ts-check
|
|
|
|
/**
|
|
* @type {import("next").NextConfig}
|
|
*/
|
|
const nextConfig = {
|
|
reactStrictMode: true,
|
|
distDir: process.env.NODE_ENV == "production" ? "dist/web" : undefined,
|
|
};
|
|
|
|
export default nextConfig;
|