File tree Expand file tree Collapse file tree 1 file changed +10
-15
lines changed
Expand file tree Collapse file tree 1 file changed +10
-15
lines changed Original file line number Diff line number Diff line change 11
2- import type { NextConfig } from 'next' ;
2+ import type { NextConfig } from 'next'
33
44const 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 ;
You can’t perform that action at this time.
0 commit comments