| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- 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: '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'
- }
- ]
- }
- },
- runtimeConfig: {
- public: {
- apiUrl: process.env.NUXT_PUBLIC_API_URL || 'http://localhost:3000',
- studentPlatform: process.env.STUDENT_PLATFORM_URL || 'http://localhost:9000'
- }
- }
- })
|