forked from miantiao-me/Sink
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnuxt.config.ts
More file actions
134 lines (122 loc) · 2.86 KB
/
nuxt.config.ts
File metadata and controls
134 lines (122 loc) · 2.86 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
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
import { provider } from 'std-env'
import { currentLocales } from './i18n/i18n'
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
modules: [
'@nuxthub/core',
'shadcn-nuxt',
'@vueuse/motion/nuxt',
'@nuxt/eslint',
'@nuxtjs/tailwindcss',
'@nuxtjs/color-mode',
'@nuxtjs/i18n',
],
devtools: { enabled: true },
colorMode: {
classSuffix: '',
},
runtimeConfig: {
siteToken: crypto.randomUUID(),
redirectStatusCode: '301',
linkCacheTtl: 60,
redirectWithQuery: false,
homeURL: '',
cfAccountId: '',
cfApiToken: '',
dataset: 'sink',
aiModel: '@cf/meta/llama-3.1-8b-instruct',
aiPrompt: `You are a URL shortening assistant, please shorten the URL provided by the user into a SLUG. The SLUG information must come from the URL itself, do not make any assumptions. A SLUG is human-readable and should not exceed three words and can be validated using regular expressions {slugRegex} . Only the best one is returned, the format must be JSON reference {"slug": "example-slug"}`,
caseSensitive: false,
listQueryLimit: 500,
disableBotAccessLog: false,
public: {
previewMode: '',
slugDefaultLength: '6',
},
},
routeRules: {
'/': {
prerender: true,
},
'/dashboard/**': {
prerender: true,
ssr: false,
},
'/dashboard': {
redirect: '/dashboard/links',
},
'/api/**': {
cors: process.env.NUXT_API_CORS === 'true',
},
},
future: {
compatibilityVersion: 4,
},
experimental: {
enforceModuleCompatibility: true,
},
nitro: {
experimental: {
openAPI: true,
},
timing: true,
openAPI: {
production: 'runtime',
meta: {
title: 'Sink API',
description: 'A Simple / Speedy / Secure Link Shortener with Analytics, 100% run on Cloudflare.',
},
route: '/_docs/openapi.json',
ui: {
scalar: {
route: '/_docs/scalar',
},
swagger: {
route: '/_docs/swagger',
},
},
},
},
hub: {
ai: true,
analytics: true,
blob: false,
cache: false,
database: false,
kv: true,
workers: provider !== 'cloudflare_pages',
},
eslint: {
config: {
stylistic: true,
standalone: false,
},
},
i18n: {
locales: currentLocales,
compilation: {
strictMessage: false,
escapeHtml: true,
},
lazy: true,
strategy: 'no_prefix',
detectBrowserLanguage: {
useCookie: true,
cookieKey: 'sink_i18n_redirected',
redirectOn: 'root',
},
baseUrl: '/',
defaultLocale: 'en-US',
},
shadcn: {
/**
* Prefix for all the imported component
*/
prefix: '',
/**
* Directory that the component lives in.
* @default "./components/ui"
*/
componentDir: './app/components/ui',
},
})