UNPKG
trading-platform-template
Version:
latest (1.0.0)
1.0.0
CLI tool to create a new Trading Platform project template
trading-platform-template
/
template
/
next.config.js
15 lines
(14 loc)
•
277 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/**
@type
{import('next').NextConfig} */
const
nextConfig
=
{ images: { remotePatterns: [ { protocol:
'https'
, hostname:
'picsum.photos'
, port:
''
, pathname:
'/**'
, }, ], }, };
module
.
exports
= nextConfig;