Skip to content

Commit 778c91a

Browse files
authored
Merge pull request #42 from simonyiszk/dev
v1
2 parents 63590aa + e9a8ad9 commit 778c91a

Some content is hidden

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

45 files changed

+1926
-85
lines changed

.env.local.example

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
SERVICE_ACCOUNT_JSON="<base-64 encoded creadentials.json of the service account>"
22
SERVICE_ACCOUNT_SUBJECT="<subject of the service account>"
33
JWT_SCOPE="<required scope for the service account>"
4-
GROUP_KEY="<email address of the google group>"
4+
GROUP_KEY="<email address of the google group>"
5+
BACKEND_URL="https://..."
6+
NEXT_PUBLIC_PLAUSIBLE_URL="<plausible url>"

next.config.js

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,21 @@
1+
const { withPlausibleProxy } = require('next-plausible');
2+
13
/** @type {import('next').NextConfig} */
2-
const nextConfig = {};
4+
const nextConfig = withPlausibleProxy({
5+
customDomain: process.env.NEXT_PUBLIC_PLAUSIBLE_URL,
6+
})({
7+
images: {
8+
remotePatterns: [
9+
{
10+
protocol: 'https',
11+
hostname: 'konf-api-staging.kir-dev.hu',
12+
},
13+
{
14+
protocol: 'https',
15+
hostname: 'konf-api.kir-dev.hu',
16+
},
17+
],
18+
},
19+
});
320

421
module.exports = nextConfig;

package.json

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,18 @@
1919
"dependencies": {
2020
"@headlessui/react": "^1.7.17",
2121
"clsx": "^2.0.0",
22+
"date-fns": "^3.3.1",
2223
"email-validator": "^2.0.4",
2324
"googleapis": "^129.0.0",
2425
"next": "14.0.3",
26+
"next-plausible": "^3.12.0",
2527
"react": "^18",
2628
"react-dom": "^18",
27-
"react-icons": "^4.12.0"
29+
"react-icons": "^4.12.0",
30+
"react-markdown": "^9.0.1",
31+
"react-snap-carousel": "^0.4.0",
32+
"remark-gfm": "^4.0.0",
33+
"yet-another-react-lightbox": "^3.16.0"
2834
},
2935
"devDependencies": {
3036
"@types/node": "^20",

public/img/nebula-thumbnail.png

269 KB
Loading

public/img/red-planet.png

5.46 MB
Loading

public/img/thumbnail.png

1.15 MB
Loading

public/img/thumbnail.webp

73 KB
Binary file not shown.

public/img/vercel.svg

Lines changed: 10 additions & 0 deletions
Loading

public/img/white-planet.png

4.48 MB
Loading

public/recharge.otf

69.1 KB
Binary file not shown.

0 commit comments

Comments
 (0)