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.
 
 
 
 
 

28 line
781 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. postcss: {
  6. plugins: {
  7. tailwindcss: {},
  8. autoprefixer: {},
  9. },
  10. },
  11. app: {
  12. head: {
  13. charset: 'utf-8',
  14. viewport: 'width=device-width, initial-scale=1',
  15. }
  16. },
  17. runtimeConfig: {
  18. API_BEARER: 'Bearer eyJhbGciOiJIUzI1NiJ9.eyJhdWQiOiI2MmVmZmYzYWU2YWYyNWQ0NTY4OGY3OTkxYjgyNmNhOCIsIm5iZiI6MTcyODA1NTIwMy4wNzcyNywic3ViIjoiNjcwMDA2ZjQ5ZWJlYTE5MDA2ZjgxZmJhIiwic2NvcGVzIjpbImFwaV9yZWFkIl0sInZlcnNpb24iOjF9.XuH-_0UggmULCgQQajKc-QsmlRYW2rqSenyhguE6wRU',
  19. public: {
  20. IMG_BASE_URL: 'https://media.themoviedb.org/t/p/w220_and_h330_face/',
  21. }
  22. },
  23. compatibilityDate: '2024-10-06',
  24. })