19 lines
431 B
TypeScript
19 lines
431 B
TypeScript
// https://nuxt.com/docs/api/configuration/nuxt-config
|
|
export default defineNuxtConfig({
|
|
devtools: { enabled: true },
|
|
modules: ["@nuxt/ui", '@nuxtjs/tailwindcss'],
|
|
tailwindcss: {
|
|
exposeConfig: true,
|
|
viewer: true,
|
|
// and more...
|
|
},
|
|
ssr: false,
|
|
devServer: {
|
|
port: 3010
|
|
},
|
|
runtimeConfig: {
|
|
public: {
|
|
apiBase: '', // can be overridden by NUXT_PUBLIC_API_BASE environment variable
|
|
}
|
|
},
|
|
}) |