mirror of
https://gitlab.com/mbugroup/lti-web-client.git
synced 2026-05-20 21:41:57 +00:00
9 lines
158 B
TypeScript
9 lines
158 B
TypeScript
import type { NextConfig } from 'next';
|
|
|
|
const nextConfig: NextConfig = {
|
|
output: 'export',
|
|
images: { unoptimized: true },
|
|
};
|
|
|
|
export default nextConfig;
|