Files
lti-web-client/next.config.ts

10 lines
181 B
TypeScript

import type { NextConfig } from 'next';
const nextConfig: NextConfig = {
output: 'export',
images: { unoptimized: true },
trailingSlash: true,
};
export default nextConfig;