-
Notifications
You must be signed in to change notification settings - Fork 0
/
nuxt.config.ts
75 lines (71 loc) · 1.61 KB
/
nuxt.config.ts
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
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
//loads nuxt devtools
debug: true,
app: {
head: {
title: "Nuxt SAAS Boilerplate",
meta: [
{ charset: "utf-8" },
{
name: "viewport",
content: "width=device-width, initial-scale=1",
},
{
hid: "description",
name: "description",
content: "Nuxt App",
},
],
link: [
{ rel: "icon", type: "image/x-icon", href: "/favicon.ico" },
{
rel: "stylesheet",
href: "https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css",
},
],
},
pageTransition: { name: "page", mode: "out-in" },
},
typescript: {
shim: false,
},
modules: [
"@nuxtjs/supabase",
"@pinia/nuxt",
"@pinia-plugin-persistedstate/nuxt",
"@nuxtjs/tailwindcss",
"@nuxt/content",
],
routeRules: {
// Static page generated on-demand once
"/articles/**": { static: true },
// Render these routes with SPA
"/admin/**": { ssr: false },
// Add cors headers
"/api/v1/**": { cors: true },
},
runtimeConfig: {
stripeSecretKey: process.env.STRIPE_SECRET_KEY,
stripeEndpointSecret: process.env.STRIPE_ENDPOINT_SECRET,
stripeCallbackUrl: process.env.STRIPE_CALLBACK_URL,
subscriptionGraceDays: 3,
initialPlanName: "Free Trial",
initialPlanActiveMonths: 1,
public: {
debugMode: true,
siteRootUrl: "http://localhost:3000",
},
},
tailwindcss: {
cssPath: "~/assets/css/tailwind.css",
},
css: ["vue-final-modal/style.css"],
devtools: {
// Enable devtools (default: true)
enabled: true,
// VS Code Server options
vscode: {},
// ...other options
},
});