Skip to content

Commit b52258e

Browse files
Update next.config.ts
1 parent 72776db commit b52258e

File tree

1 file changed

+10
-15
lines changed

1 file changed

+10
-15
lines changed

next.config.ts

Lines changed: 10 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,53 +1,48 @@
11

2-
import type {NextConfig} from 'next';
2+
import type { NextConfig } from 'next'
33

44
const nextConfig: NextConfig = {
5-
/* config options here */
5+
output: 'export',
6+
67
typescript: {
78
ignoreBuildErrors: true,
89
},
10+
911
eslint: {
1012
ignoreDuringBuilds: true,
1113
},
14+
1215
images: {
16+
unoptimized: true,
1317
remotePatterns: [
1418
{
1519
protocol: 'https',
1620
hostname: 'picsum.photos',
17-
port: '',
1821
pathname: '/**',
1922
},
2023
{
2124
protocol: 'https',
2225
hostname: 'images.unsplash.com',
23-
port: '',
2426
pathname: '/**',
2527
},
2628
{
2729
protocol: 'https',
2830
hostname: 'encrypted-tbn0.gstatic.com',
29-
port: '',
3031
pathname: '/**',
3132
},
3233
{
3334
protocol: 'https',
3435
hostname: 'i.scdn.co',
35-
port: '',
3636
pathname: '/**',
3737
},
3838
{
3939
protocol: 'https',
4040
hostname: 'image-cdn-ak.spotifycdn.com',
41-
port: '',
4241
pathname: '/**',
43-
}
44-
],
45-
},
46-
devIndicators: {
47-
allowedDevOrigins: [
48-
'*.cluster-wfwbjypkvnfkaqiqzlu3ikwjhe.cloudworkstations.dev',
42+
},
4943
],
5044
},
51-
};
45+
}
46+
47+
export default nextConfig
5248

53-
export default nextConfig;

0 commit comments

Comments
 (0)