nuxt.config.js 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. require('dotenv').config();
  2. import autoprefixer from 'autoprefixer';
  3. import serveStatic from 'serve-static';
  4. import path from 'path';
  5. export default {
  6. server: {
  7. port: process.env.WEBSITE_PORT
  8. },
  9. env: {
  10. version: process.env.npm_package_version,
  11. URL: process.env.DOMAIN,
  12. baseURL: `${process.env.DOMAIN}${process.env.ROUTE_PREFIX}`,
  13. serviceName: process.env.SERVICE_NAME,
  14. maxFileSize: process.env.MAX_SIZE,
  15. chunkSize: process.env.CHUNK_SIZE,
  16. maxLinksPerAlbum: process.env.MAX_LINKS_PER_ALBUM
  17. },
  18. srcDir: 'src/site/',
  19. head: {
  20. meta: [
  21. { charset: 'utf-8' },
  22. { name: 'viewport', content: 'width=device-width, initial-scale=1' }
  23. ],
  24. link: [
  25. { rel: 'stylesheet', href: 'https://fonts.googleapis.com/css?family=Nunito:300,400,600,700' }
  26. ]
  27. },
  28. plugins: [
  29. '~/plugins/vue-axios',
  30. '~/plugins/buefy',
  31. '~/plugins/v-clipboard',
  32. '~/plugins/vue-analytics',
  33. '~/plugins/vue-isyourpasswordsafe',
  34. '~/plugins/vue-timeago'
  35. ],
  36. serverMiddleware: [
  37. { path: '/', handler: serveStatic(path.join(__dirname, 'uploads')) }
  38. ],
  39. css: [],
  40. build: {
  41. extractCSS: true,
  42. postcss: [
  43. autoprefixer
  44. ]
  45. }
  46. };