-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnuxt.config.ts
More file actions
49 lines (48 loc) · 1.61 KB
/
nuxt.config.ts
File metadata and controls
49 lines (48 loc) · 1.61 KB
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
import pkg from './package.json';
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
runtimeConfig: {
public: {
version: pkg.version,
},
},
compatibilityDate: '2025-07-15',
devtools: { enabled: true },
modules: ['@nuxtjs/tailwindcss', '@nuxt/eslint'],
eslint: {
config: {
standalone: false,
},
},
css: ['~/assets/css/main.css'],
app: {
head: {
title: 'Follower Celebrator',
meta: [
{ charset: 'utf-8' },
{ name: 'viewport', content: 'width=device-width, initial-scale=1' },
{
name: 'description',
content:
'Visualize your social media followers and celebrate milestones with style. Create beautiful screens for sharing on Twitter, Instagram, and more.',
},
{ name: 'theme-color', content: '#4f46e5' },
// Open Graph / Facebook
{ property: 'og:type', content: 'website' },
{ property: 'og:title', content: 'Follower Celebrator - Celebrate Your Milestones' },
{
property: 'og:description',
content: 'Visualize your social media followers and celebrate milestones with style.',
},
// Twitter
{ name: 'twitter:card', content: 'summary_large_image' },
{ name: 'twitter:title', content: 'Follower Celebrator - Celebrate Your Milestones' },
{
name: 'twitter:description',
content: 'Visualize your social media followers and celebrate milestones with style.',
},
],
link: [{ rel: 'icon', type: 'image/svg+xml', href: '/favicon.svg' }],
},
},
});