nuxt.config.js 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. export default {
  2. // Global page headers: https://go.nuxtjs.dev/config-head
  3. head: {
  4. title: '17PDF',
  5. htmlAttrs: {
  6. lang: 'en',
  7. },
  8. meta: [
  9. { charset: 'utf-8' },
  10. { name: 'viewport', content: 'width=device-width, initial-scale=1' },
  11. { hid: 'description', name: 'description', content: '' },
  12. { name: 'format-detection', content: 'telephone=no' },
  13. ],
  14. link: [{ rel: 'icon', type: 'image/x-icon', href: '/favicon.ico' }],
  15. },
  16. // Global CSS: https://go.nuxtjs.dev/config-css
  17. css: [],
  18. // Plugins to run before rendering page: https://go.nuxtjs.dev/config-plugins
  19. plugins: [],
  20. // Auto import components: https://go.nuxtjs.dev/config-components
  21. components: true,
  22. // Modules for dev and build (recommended): https://go.nuxtjs.dev/config-modules
  23. buildModules: [
  24. // https://go.nuxtjs.dev/typescript
  25. '@nuxt/typescript-build',
  26. ],
  27. // Modules: https://go.nuxtjs.dev/config-modules
  28. modules: [],
  29. // Build Configuration: https://go.nuxtjs.dev/config-build
  30. build: {},
  31. }