Gmagl commited on
Commit
622720b
·
1 Parent(s): cd96cb4

Fix: next.config.ts syntax

Browse files
Files changed (1) hide show
  1. next.config.ts +5 -5
next.config.ts CHANGED
@@ -1,8 +1,8 @@
1
- import type {{ NextConfig }} from "next";
2
 
3
- const nextConfig: NextConfig = {{
4
- output: "standalone",
5
  reactStrictMode: true,
6
- }};
7
 
8
- export default nextConfig;
 
1
+ import type { NextConfig } from 'next';
2
 
3
+ const nextConfig: NextConfig = {
4
+ output: 'standalone',
5
  reactStrictMode: true,
6
+ };
7
 
8
+ export default nextConfig;