require('dotenv').config(); const pkg = require('./package.json'); module.exports = { env: { VERSION: pkg.version, }, basePath: process.env.BASE_PATH, eslint: { ignoreDuringBuilds: true, }, webpack(config) { config.module.rules.push({ test: /\.svg$/, issuer: /\.js$/, use: ['@svgr/webpack'], }); return config; }, async headers() { return [ { source: `/umami.js`, headers: [ { key: 'Cache-Control', value: 'public, max-age=2592000', // 30 days }, ], }, ]; }, };