9 lines
144 B
TypeScript
9 lines
144 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const config: NextConfig = {
|
|
output: "standalone",
|
|
trailingSlash: true,
|
|
};
|
|
|
|
export default config;
|