-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnuxt.config.ts
34 lines (33 loc) · 1.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
import { defineNuxtConfig } from "nuxt";
// https://v3.nuxtjs.org/api/configuration/nuxt.config
export default defineNuxtConfig({
runtimeConfig: {
public: {
'graphql-client': {
silent: false,
clients: {
default: {
host: 'http://localhost:1337/graphql',
token: '5212101334402fbb18d324b740399b0a25eac97c2e4d34e908b8b36591e4ed452fcd6083ef433bdf9987308ac15f9959abc6ea4c5dc38a1346f23e73aa5fe00676209f23b394484d3b98dd9e12f32ebfba7a21851b302e49084efde34fb9edf9420e3f630a3dde0029b98109c59d2d1d189768f69085ed70394dcf03dced5bee'
}
}
}
}
},
build: {
postcss: {
postcssOptions: {
plugins: {
tailwindcss: {},
autoprefixer: {},
},
},
},
},
// plugins: [{ src: '~/plugins/vue-plyr', mode: 'client' }],
modules: ["@pinia/nuxt", "nuxt-graphql-client"],
css: ["~/assets/css/tailwind.css",
"primevue/resources/themes/saga-blue/theme.css", //theme
"primevue/resources/primevue.min.css", //core css
"primeicons/primeicons.css"],
});