We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 721a8f4 commit 1943dceCopy full SHA for 1943dce
README.md
@@ -18,6 +18,11 @@ bundle exec jekyll serve
18
```
19
##
20
### Jekyll and CMS
21
+To use npm enviroment
22
+```
23
+nvm use
24
25
+
26
To install dependencies:
27
28
bundle install
tina/config.ts
@@ -31,6 +31,11 @@ export default defineConfig({
31
label: "Noticias",
32
name: "posts",
33
path: "_posts",
34
+ defaultItem: () => {
35
+ return {
36
+ layout: 'post',
37
+ };
38
+ },
39
match: {
40
include: "*",
41
},
@@ -191,4 +196,12 @@ export default defineConfig({
191
196
192
197
],
193
198
199
+ search: {
200
+ tina: {
201
+ indexerToken: process.env.TINA_SEARCH_TOKEN,
202
+ stopwordLanguages: ['spa'],
203
204
+ indexBatchSize: 100,
205
+ maxSearchIndexFieldLength: 100,
206
194
207
});
0 commit comments