Skip to content

Commit 26bc61a

Browse files
authored
Merge pull request #16 from protoxvga/features/PLD
Features/pld
2 parents fe0947c + 04f60bd commit 26bc61a

File tree

72 files changed

+1237
-164
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

72 files changed

+1237
-164
lines changed

.eslintrc.json

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"extends": "next/core-web-vitals"
3+
}

next.config.js

+12-1
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,22 @@
22
const nextConfig = {
33
reactStrictMode: true,
44
env: {
5+
BASE_API_URL: process.env.BASE_API_URL,
56
BASE_URL: process.env.BASE_URL,
67
},
78
devIndicators: {
89
buildActivity: false
9-
}
10+
},
11+
images: {
12+
unoptimized: true,
13+
remotePatterns: [
14+
{
15+
protocol: 'https',
16+
hostname: process.env.HOSTNAME,
17+
},
18+
],
19+
},
20+
trailingSlash: true,
1021
}
1122

1223
module.exports = nextConfig

0 commit comments

Comments
 (0)