nuxt.config.js 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. import colors from 'vuetify/es5/util/colors'
  2. export default {
  3. // Global page headers: https://go.nuxtjs.dev/config-head
  4. head: {
  5. titleTemplate: 'Return YouTube Dislike',
  6. title: 'Return YouTube Dislike',
  7. htmlAttrs: {
  8. lang: 'en'
  9. },
  10. meta: [
  11. { charset: 'utf-8' },
  12. { name: 'viewport', content: 'width=device-width, initial-scale=1' },
  13. { hid: 'description', name: 'description', content: 'An extension that returns dislike statistics to YouTube. For now, it only works if a video had public display of dislikes enabled before YouTube removed dislike stats. ' },
  14. { hid: 'og:image', name: 'og:image', content: '/logo.png' },
  15. { hid: 'theme-color', name: 'theme-color', content: '#ff0000' }
  16. ],
  17. link: [
  18. { rel: 'icon', type: 'image/svg+xml', href: '/logo.svg' },
  19. { rel: 'icon', type: 'image/x-icon', href: '/favicon.ico' }
  20. ]
  21. },
  22. target: 'static',
  23. css: [],
  24. plugins: [],
  25. components: true,
  26. buildModules: [
  27. '@nuxtjs/vuetify',
  28. ],
  29. modules: [],
  30. // Vuetify module configuration: https://go.nuxtjs.dev/config-vuetify
  31. vuetify: {
  32. customVariables: ['~/assets/variables.scss'],
  33. theme: {
  34. dark: true,
  35. themes: {
  36. dark: {
  37. primary: "#ff4444",
  38. accent: colors.grey.darken3,
  39. secondary: colors.amber.darken3,
  40. info: colors.teal.lighten1,
  41. warning: colors.amber.base,
  42. error: colors.deepOrange.accent4,
  43. success: colors.green.accent3
  44. }
  45. }
  46. }
  47. },
  48. build: {}
  49. }