-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnuxt.config.ts
More file actions
26 lines (25 loc) · 794 Bytes
/
Copy pathnuxt.config.ts
File metadata and controls
26 lines (25 loc) · 794 Bytes
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
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
ssr: false,
app: {
head: {
charset: 'utf-8',
viewport: 'width=device-width, initial-scale=1',
title: 'Food chain companion',
meta: [{
name: 'Food chain companion',
content: 'Application to help you play the board game Food chain magnate and make the dinnertime phase easier.'
}]
},
},
modules: ['@nuxtjs/tailwindcss', '@pinia/nuxt', '@vueuse/nuxt', 'nuxt-icon', '@pinia-plugin-persistedstate/nuxt'],
piniaPersistedstate: {
storage: 'localStorage'
},
postcss: {
plugins: {
tailwindcss: {},
autoprefixer: {},
},
},
})