-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnuxt.config.ts
103 lines (102 loc) · 2.08 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
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
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
modules: [
'@pinia/nuxt',
'@nuxt/devtools',
'@vite-pwa/nuxt',
'@element-plus/nuxt',
'@nuxtjs/eslint-module',
'@sidebase/nuxt-auth',
],
css: ['@/assets/styles/global.scss', '@/assets/styles/normalize.css'],
runtimeConfig: {
mongoDbUrl: process.env.MONGO_DB_URL,
jwtSecret: process.env.JWT_SECRET,
publicRoutes: ['/api/auth/login', '/api/auth/register'],
},
typescript: {
strict: true,
typeCheck: true,
},
routeRules: {
'/api/**': { cors: true },
},
vite: {
optimizeDeps: {
include: ['jsonwebtoken'],
},
css: {
preprocessorOptions: {
scss: {
additionalData: '@import "@/assets/styles/variables.scss";',
},
},
},
ssr: {},
build: {
reportCompressedSize: true,
watch: {},
commonjsOptions: {
include: [/jsonwebtoken/, /node_modules/],
},
},
},
nitro: {
plugins: ['~/server/index.ts'],
},
devtools: {},
pwa: {
registerType: 'autoUpdate',
devOptions: {
enabled: false,
},
includeAssets: ['favicon.ico', 'apple-touch-icon.png', 'mask-icon.png'],
manifest: {
name: 'Nuxt 3 starter app',
short_name: 'NUXT APP',
description: 'Awesome fullstack application built with Nuxt3 + MongoDB',
theme_color: '#ffffff',
icons: [
{
src: 'icon-192x192.png',
sizes: '192x192',
type: 'image/png',
},
{
src: 'icon-512x512.png',
sizes: '512x512',
type: 'image/png',
},
{
src: 'icon-512x512.png',
sizes: '512x512',
type: 'image/png',
purpose: 'any maskable',
},
],
},
workbox: {
globPatterns: ['**/*.{js,css,html}'],
navigateFallback: null,
},
},
auth: {
// @ts-ignore This layer will show a runtime-error when the other layer is loaded, as then type === 'local' is selected
origin: 'http://localhost:3000',
provider: {
type: 'local',
pages: {
login: '/auth/login',
},
token: {
signInResponseTokenPointer: '/token/accessToken',
},
},
globalAppMiddleware: {
isEnabled: true,
},
},
eslint: {
failOnError: true,
},
});