nuxt.config.ts 298 B

12345678910111213141516
  1. // https://nuxt.com/docs/api/configuration/nuxt-config
  2. export default defineNuxtConfig({
  3. compatibilityDate: '2025-07-15',
  4. devtools: { enabled: true },
  5. css: [
  6. '../assets/css/bootstrap.css'
  7. ],
  8. app: {
  9. head: {
  10. script: [
  11. {src: "../js/bootstrap.js"}
  12. ]
  13. }
  14. }
  15. })