| 12345678910111213141516 |
- // https://nuxt.com/docs/api/configuration/nuxt-config
- export default defineNuxtConfig({
- compatibilityDate: '2025-07-15',
- devtools: { enabled: true },
- css: [
- '../assets/css/bootstrap.css'
- ],
- app: {
- head: {
- script: [
- {src: "../js/bootstrap.js"}
- ]
- }
- }
- })
|