22 lines
761 B
TypeScript
22 lines
761 B
TypeScript
// https://nuxt.com/docs/api/configuration/nuxt-config
|
|
export default defineNuxtConfig({
|
|
compatibilityDate: '2025-07-15',
|
|
devtools: { enabled: true },
|
|
modules: ['@nuxt/eslint', '@nuxtjs/tailwindcss'],
|
|
css: ['~/assets/css/main.css'],
|
|
runtimeConfig: {
|
|
public: {
|
|
graphqlEndpoint: process.env.NUXT_PUBLIC_GRAPHQL_ENDPOINT ?? 'http://localhost:4000/graphql',
|
|
sentryDsn: process.env.NUXT_PUBLIC_SENTRY_DSN ?? '',
|
|
sentryEnvironment: process.env.NUXT_PUBLIC_SENTRY_ENVIRONMENT ?? 'development',
|
|
sentryRelease: process.env.NUXT_PUBLIC_SENTRY_RELEASE ?? 'dev',
|
|
},
|
|
},
|
|
app: {
|
|
head: {
|
|
title: 'Fregat Manager Cabinet',
|
|
meta: [{ name: 'viewport', content: 'width=device-width, initial-scale=1' }],
|
|
},
|
|
},
|
|
});
|