-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnext.config.js
97 lines (91 loc) · 2 KB
/
next.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
/* eslint-disable @typescript-eslint/no-var-requires */
/** @type {import('next').NextConfig} */
const appSecurityHeaders = [
{ key: 'X-XSS-Protection', value: '1; mode=block' },
{
key: 'X-Frame-Options',
value: 'SAMEORIGIN',
},
];
const withPWA = require('next-pwa')({
dest: 'public',
register: true,
skipWaiting: true,
sw: '/next-sw.js',
disable: process.env.NODE_ENV !== 'production',
});
const nextConfig = {
reactStrictMode: true,
logging: {
fetches: {
fullUrl: true,
},
},
images: {
dangerouslyAllowSVG: true,
remotePatterns: [
{
protocol: 'https',
hostname: 'media.theresanaiforthat.com',
},
{
protocol: 'https',
hostname: 'media.giphy.com',
},
{
protocol: 'https',
hostname: 'i.ibb.co',
},
{
protocol: 'https',
hostname: 'github.com',
},
{
protocol: 'https',
hostname: 'aibrb.com',
},
{
protocol: 'https',
hostname: 'lh3.googleusercontent.com',
},
{
protocol: 'https',
hostname: 'api.producthunt.com',
},
{
protocol: 'https',
hostname: 'avosfnqiscrmxpqmhswp.supabase.co',
},
],
formats: ['image/webp'],
},
async headers() {
return [
{
// Apply these headers to all routes in your application.
source: '/:path*',
headers: appSecurityHeaders,
},
];
},
async rewrites() {
return [
{
source: '/sitemap.txt',
destination: '/api/sitemap?type=txt',
},
];
},
eslint: {
dirs: ['app', 'pages', 'components', 'lib'],
},
pageExtensions: ['mdx', 'tsx', 'ts', 'jsx', 'js'],
transpilePackages: ['lucide-react'],
};
const withBundleAnalyzer = require('@next/bundle-analyzer')({
enabled: process.env.ANALYZE === 'true',
});
const withMDX = require('@next/mdx')({
extension: /\.mdx?$/,
});
module.exports = withBundleAnalyzer(withMDX(withPWA(nextConfig)));