nuxt.config.ts 403 B

12345678910111213141516
  1. // https://nuxt.com/docs/api/configuration/nuxt-config
  2. export default defineNuxtConfig({
  3. compatibilityDate: '2025-05-15',
  4. devtools: { enabled: true },
  5. app: {
  6. head: {
  7. script: [
  8. {
  9. src: 'https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-9165036986914822',
  10. async: true,
  11. crossorigin: 'anonymous'
  12. }
  13. ]
  14. }
  15. }
  16. })