2020-07-17 10:03:38 +02:00
|
|
|
require('dotenv').config();
|
2020-09-10 01:12:29 +02:00
|
|
|
const pkg = require('./package.json');
|
2020-07-17 10:03:38 +02:00
|
|
|
|
|
|
|
module.exports = {
|
2020-09-10 01:12:29 +02:00
|
|
|
env: {
|
|
|
|
VERSION: pkg.version,
|
2020-10-04 06:54:21 +02:00
|
|
|
FORCE_SSL: !!process.env.FORCE_SSL,
|
2022-02-17 00:01:33 +01:00
|
|
|
DISABLE_LOGIN: !!process.env.DISABLE_LOGIN,
|
2022-02-17 05:58:44 +01:00
|
|
|
TRACKER_SCRIPT_NAME: process.env.TRACKER_SCRIPT_NAME,
|
2020-09-27 05:46:20 +02:00
|
|
|
},
|
2020-12-04 07:28:05 +01:00
|
|
|
basePath: process.env.BASE_PATH,
|
2021-11-22 23:53:36 +01:00
|
|
|
eslint: {
|
|
|
|
ignoreDuringBuilds: true,
|
|
|
|
},
|
2020-07-17 10:03:38 +02:00
|
|
|
webpack(config) {
|
|
|
|
config.module.rules.push({
|
|
|
|
test: /\.svg$/,
|
2021-07-13 05:25:24 +02:00
|
|
|
issuer: /\.js$/,
|
2020-07-17 10:03:38 +02:00
|
|
|
use: ['@svgr/webpack'],
|
|
|
|
});
|
|
|
|
|
|
|
|
return config;
|
|
|
|
},
|
2020-10-05 09:45:24 +02:00
|
|
|
async headers() {
|
|
|
|
return [
|
|
|
|
{
|
|
|
|
source: '/umami.js',
|
|
|
|
headers: [
|
|
|
|
{
|
|
|
|
key: 'Cache-Control',
|
|
|
|
value: 'public, max-age=2592000', // 30 days
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
2020-12-04 07:28:05 +01:00
|
|
|
];
|
2020-10-05 09:45:24 +02:00
|
|
|
},
|
2020-07-17 10:03:38 +02:00
|
|
|
};
|