-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnext.config.ts
More file actions
24 lines (21 loc) · 1.15 KB
/
Copy pathnext.config.ts
File metadata and controls
24 lines (21 loc) · 1.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/** *************************************************************************
* *
* Copyright (c) 2026, @struggyyy *
* *
* Project: ScreenFixer *
* *
* All Rights Reserved *
* *
* This is unpublished proprietary source code of @struggyyy. *
* The copyright notice above does not evidence any actual *
* or intended publication of such source code. *
* *
************************************************************************** */
// External libraries
import type { NextConfig } from 'next';
const nextConfig: NextConfig = {
compiler: {
styledComponents: true,
},
};
export default nextConfig;