nuxt.config.js 822 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. import autoprefixer from 'autoprefixer';
  2. import serveStatic from 'serve-static';
  3. import path from 'path';
  4. import config from './config';
  5. export default {
  6. server: {
  7. port: config.server.ports.frontend
  8. },
  9. srcDir: 'src/site/',
  10. head: {
  11. meta: [
  12. { charset: 'utf-8' },
  13. { name: 'viewport', content: 'width=device-width, initial-scale=1' }
  14. ],
  15. link: [
  16. { rel: 'stylesheet', href: 'https://fonts.googleapis.com/css?family=Nunito:300,400,600,700' }
  17. ]
  18. },
  19. plugins: [
  20. '~/plugins/vue-axios',
  21. '~/plugins/buefy',
  22. '~/plugins/v-clipboard',
  23. '~/plugins/vue-analytics',
  24. '~/plugins/vue-isyourpasswordsafe',
  25. '~/plugins/vue-timeago'
  26. ],
  27. serverMiddleware: [
  28. { path: '/', handler: serveStatic(path.join(__dirname, 'uploads')) }
  29. ],
  30. css: [],
  31. build: {
  32. extractCSS: true,
  33. postcss: [
  34. autoprefixer
  35. ]
  36. }
  37. };