| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- import tailwindcss from "@tailwindcss/vite";
- // https://nuxt.com/docs/api/configuration/nuxt-config
- export default defineNuxtConfig({
- compatibilityDate: '2025-07-15',
- devtools: { enabled: true },
- modules: [
- '@nuxt/eslint',
- '@nuxt/image',
- '@nuxt/ui',
- ],
- css: ['~/assets/css/main.css'],
- vite: {
- plugins: [tailwindcss()]
- },
- app: {
- head: {
- link: [
- {
- rel: 'icon',
- type: 'image/png',
- sizes: '128x128',
- href: '/icons/favicon-128x128.png'
- },
- {
- rel: 'icon',
- type: 'image/png',
- sizes: '96x96',
- href: '/icons/favicon-96x96.png'
- },
- {
- rel: 'icon',
- type: 'image/png',
- sizes: '32x32',
- href: '/icons/favicon-32x32.png'
- },
- {
- rel: 'icon',
- type: 'image/png',
- sizes: '16x16',
- href: '/icons/favicon-16x16.png'
- },
- {
- rel: 'icon',
- type: 'image/x-icon',
- href: '/favicon.ico'
- },
- {
- rel: 'preconnect',
- href: 'https://fonts.googleapis.com'
- },
- {
- rel: 'preconnect',
- href: 'https://fonts.gstatic.com',
- crossorigin: ''
- },
- {
- rel: 'stylesheet',
- href: 'https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;600&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap'
- },
- {
- rel: 'stylesheet',
- href: 'https://fonts.googleapis.com/icon?family=Material+Icons'
- },
- {
- rel: 'stylesheet',
- href: 'https://cdn.jsdelivr.net/npm/@mdi/font@7/css/materialdesignicons.min.css'
- }
- ]
- }
- },
- runtimeConfig: {
- public: {
- apiUrl: process.env.NUXT_PUBLIC_API_URL || 'http://localhost:3000',
- studentPlatform: process.env.STUDENT_PLATFORM_URL || 'http://localhost:9000'
- }
- }
- })
|