jefer94/choco

View on GitHub
services/algorithm/next.config.js

Summary

Maintainability
A
0 mins
Test Coverage
const { loadEnv } = require('@chocolab/env')
const withPWA = require('next-pwa')

loadEnv()

module.exports = withPWA({
  env: {
    HUB_API: process.env.HUB_API
  },
  pwa: {
    dest: 'public'
  },
  cssLoaderOptions: {
    url: false
  },
  devIndicators: {
    autoPrerender: false
  }
})