@@ -2,11 +2,24 @@ import { defineConfig } from 'vitepress'
22
33export default defineConfig ( {
44 title : 'loq' ,
5- description : 'Fast, friendly CLI log analyzer - jq for logs' ,
5+ description : 'Fast, friendly CLI log analyzer - jq for logs. Parse JSON, Apache, Nginx, syslog with simple queries. Alternative to grep and jq. ' ,
66 base : '/loq/' ,
77
8+ sitemap : {
9+ hostname : 'https://code-with-auto.github.io/loq/'
10+ } ,
11+
812 head : [
913 [ 'link' , { rel : 'icon' , type : 'image/svg+xml' , href : '/logo.svg' } ] ,
14+ [ 'meta' , { name : 'keywords' , content : 'log analyzer, cli, jq alternative, grep alternative, json logs, apache logs, nginx logs, syslog, bun, nodejs' } ] ,
15+ [ 'meta' , { name : 'author' , content : 'code-with-auto' } ] ,
16+ [ 'meta' , { property : 'og:title' , content : 'loq - CLI Log Analyzer' } ] ,
17+ [ 'meta' , { property : 'og:description' , content : 'Fast, friendly CLI log analyzer - jq for logs' } ] ,
18+ [ 'meta' , { property : 'og:type' , content : 'website' } ] ,
19+ [ 'meta' , { property : 'og:url' , content : 'https://code-with-auto.github.io/loq/' } ] ,
20+ [ 'meta' , { name : 'twitter:card' , content : 'summary' } ] ,
21+ [ 'meta' , { name : 'twitter:title' , content : 'loq - CLI Log Analyzer' } ] ,
22+ [ 'meta' , { name : 'twitter:description' , content : 'Fast, friendly CLI log analyzer - jq for logs' } ] ,
1023 ] ,
1124
1225 themeConfig : {
0 commit comments