-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathastro.config.mjs
164 lines (162 loc) · 6.95 KB
/
astro.config.mjs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
import { defineConfig } from 'astro/config';
import cloudflare from '@astrojs/cloudflare';
import mdx from '@astrojs/mdx';
import tailwind from "@astrojs/tailwind";
import remarkMermaid from 'astro-diagram/remark-mermaid';
import cookieconsent from "@jop-software/astro-cookieconsent";
var logo = '<img src="https://raw.githubusercontent.com/wgdotnet/public/main/img/svg/logo_black.svg" alt="Logo" loading="lazy" style="margin-left: -4px; margin-bottom: -5px; height: 35px">';
// https://astro.build/config
export default defineConfig({
integrations: [
mdx({
syntaxHighlight: 'shiki',
shikiConfig: { theme: 'dracula' },
remarkPlugins: [remarkMermaid],
remarkRehype: { footnoteLabel: 'Footnotes' },
//gfm: false,
}),
tailwind({
// disable default injected base.css
applyBaseStyles: false,
configFile: './tailwind.config.cjs'
}),
cookieconsent({
gui_options: {
consent_modal: {
layout: 'cloud', // box/cloud/bar
position: 'bottom center', // bottom/middle/top + left/right/center
transition: 'slide', // zoom/slide
swap_buttons: false // enable to invert buttons
},
settings_modal: {
layout: 'box', // box/bar
position: 'left', // left/right
transition: 'slide' // zoom/slide
}
},
languages: {
'en': {
consent_modal: {
title: 'We use cookies!',
description: 'Hi, this website uses essential cookies to ensure its proper operation. <button type="button" data-cc="c-settings" class="cc-link">Settings</button>',
primary_btn: {
text: 'Accept all',
role: 'accept_all'
},
secondary_btn: {
text: 'Reject all',
role: 'accept_necessary'
}
},
settings_modal: {
title: logo,
save_settings_btn: 'Save settings',
accept_all_btn: 'Accept all',
reject_all_btn: 'Reject all',
close_btn_label: 'Close',
cookie_table_headers: [
{col1: 'Name'},
{col2: 'Domain'},
{col3: 'Expiration'},
{col4: 'Description'}
],
blocks: [
{
title: 'Cookie usage',
description: 'We use cookies to ensure the basic functionalities of the website and to enhance your online experience.'
}, {
title: 'Strictly necessary cookies',
description: 'These cookies are essential for the proper functioning of the website. Without these cookies, the website would not work properly',
toggle: {
value: 'necessary',
enabled: true,
readonly: true
},
cookie_table: [
{
col1: '^_wgdotnet',
col2: 'wgdotnet.pl',
col3: '90(s)',
col4: 'technical cookies',
is_regex: true
}
]
},
{
title: 'More information',
description: 'For any queries in relation to our policies on cookies, privacy and your choices, please: <br/><ul><li>- Review the <a href="/privacy" class="cc-link">privacy policy</a></li><li>- Review the <a href="/cookies" class="cc-link">cookies policy</a></li><li>- <a class="cc-link" href="mailto:[email protected]">Contact us</a></li></ul>',
}
]
}
},
'pl': {
consent_modal: {
title: 'Używamy plików cookie(s)!',
description: 'Witaj, ta strona używa plików cookie(s), by zapewnić jej poprawne funkcjonowanie. <button type="button" data-cc="c-settings" class="cc-link">Ustawienia</button>',
primary_btn: {
text: 'Zaakceptuj wszystkie',
role: 'accept_all'
},
secondary_btn: {
text: 'Zaakceptuj wymagane',
role: 'accept_necessary'
}
},
settings_modal: {
title: logo,
save_settings_btn: 'Zapisz ustawienia',
accept_all_btn: 'Zaakceptuj wszystkie',
reject_all_btn: 'Zaakceptuj wymagane',
close_btn_label: 'Zamknij',
cookie_table_headers: [
{col1: 'Nazwa'},
{col2: 'Domena'},
{col3: 'Wygaśnięcie'},
{col4: 'Opis'}
],
blocks: [
{
title: 'Wykorzystanie plików cookie',
description: 'Wykorzystujemy pliki cookie, w celu zapewnienia podstawowych funkcjonalności tej strony, oraz w celu poprawy doświadczeń użytkownika.'
}, {
title: 'Wymagane pliki cookie',
description: 'Te pliki cookie(s) są niezbędne do funkcjonowania strony. Bez tych plików cookies, strona nie będzie działać prawidłowo',
toggle: {
value: 'necessary',
enabled: true,
readonly: true
},
cookie_table: [
{
col1: '^_wgdotnet',
col2: 'wgdotnet.pl',
col3: '90 dni',
col4: 'cookie(s) "techniczne"',
is_regex: true
}
]
},
{
title: 'Więcej informacji',
description: 'W celu uzyskania odpowiedzi na tematy związane z naszymi politykami ochrony danych osobowych oraz plików cookie, prosimy o: <br/><ul><li>- Zapoznanie się z <a href="/privacy" class="cc-link">polityką ochrony danych osobowych</a></li><li>- Zapoznanie się z <a href="/cookies" class="cc-link">polityką cookies</a></li><li>- <a class="cc-link" href="mailto:[email protected]">Kontakt z nami</a></li></ul>',
}
]
}
}
}
})
],
load: {
unknown: 'src/pages/404.astro'
},
output: 'server',
adapter: cloudflare(),
// https://github.com/natemoo-re/astro-icon/issues/35#issuecomment-1578101502
vite: {
resolve: {
alias: {
"svgo": import.meta.env.PROD ? "svgo/dist/svgo.browser.js" : "svgo"
}
}
}
});