You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

30 lines
888 B

  1. // https://nuxt.com/docs/api/configuration/nuxt-config
  2. export default defineNuxtConfig({
  3. devtools: { enabled: true },
  4. css: ['~/assets/css/main.css'],
  5. modules: ['@vueuse/nuxt', '@nuxt/test-utils/module', '@pinia/nuxt'],
  6. postcss: {
  7. plugins: {
  8. tailwindcss: {},
  9. autoprefixer: {},
  10. },
  11. },
  12. app: {
  13. head: {
  14. charset: 'utf-8',
  15. viewport: 'width=device-width, initial-scale=1',
  16. }
  17. },
  18. runtimeConfig: {
  19. API_BEARER: 'Bearer eyJhbGciOiJIUzI1NiJ9.eyJhdWQiOiI2MmVmZmYzYWU2YWYyNWQ0NTY4OGY3OTkxYjgyNmNhOCIsIm5iZiI6MTcyODA1NTIwMy4wNzcyNywic3ViIjoiNjcwMDA2ZjQ5ZWJlYTE5MDA2ZjgxZmJhIiwic2NvcGVzIjpbImFwaV9yZWFkIl0sInZlcnNpb24iOjF9.XuH-_0UggmULCgQQajKc-QsmlRYW2rqSenyhguE6wRU',
  20. public: {
  21. IMG_BASE_URL: 'https://media.themoviedb.org/t/p/w220_and_h330_face/',
  22. }
  23. },
  24. typescript: {
  25. strict: true
  26. },
  27. compatibilityDate: '2024-10-06',
  28. })