mirror of https://github.com/nocodb/nocodb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
732 B
35 lines
732 B
import {defineNuxtConfig} from 'nuxt' |
|
|
|
// https://v3.nuxtjs.org/api/configuration/nuxt.config |
|
export default defineNuxtConfig({ |
|
// modules: ['@nuxtjs/tailwindcss'], |
|
// buildModules: [ |
|
// 'nuxt-vite' |
|
// ], |
|
modules: ['nuxt3-store'], |
|
ssr:false, |
|
plugins: [ |
|
// '~/plugins/vuetify.ts', |
|
// '~/plugins/api.ts', |
|
], |
|
css: ['vuetify/lib/styles/main.sass'], |
|
build: { |
|
transpile: ['vuetify'] |
|
}, |
|
|
|
// css: [ |
|
// 'primevue/resources/themes/saga-blue/theme.css', |
|
// 'primevue/resources/primevue.css', |
|
// 'primeicons/primeicons.css', |
|
// 'primeflex/primeflex.css', |
|
// ], |
|
// build: { |
|
// transpile: ['primevue'] |
|
// }, |
|
|
|
vite: { |
|
define: { |
|
'process.env.DEBUG': 'false', |
|
} |
|
} |
|
})
|
|
|