2023-02-15 11:27:18 +01:00
|
|
|
/* eslint-disable @typescript-eslint/no-var-requires */
|
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
|
|
|
|
2023-03-09 01:37:43 +01:00
|
|
|
const CLOUD_URL = 'https://cloud.umami.is';
|
|
|
|
|
2022-08-01 08:29:47 +02:00
|
|
|
const contentSecurityPolicy = `
|
|
|
|
default-src 'self';
|
|
|
|
img-src *;
|
|
|
|
script-src 'self' 'unsafe-eval';
|
|
|
|
style-src 'self' 'unsafe-inline';
|
|
|
|
connect-src 'self' api.umami.is;
|
|
|
|
frame-ancestors 'self';
|
|
|
|
`;
|
|
|
|
|
|
|
|
const headers = [
|
|
|
|
{
|
|
|
|
key: 'X-DNS-Prefetch-Control',
|
|
|
|
value: 'on',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
key: 'X-Frame-Options',
|
|
|
|
value: 'SAMEORIGIN',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
key: 'Content-Security-Policy',
|
|
|
|
value: contentSecurityPolicy.replace(/\s{2,}/g, ' ').trim(),
|
|
|
|
},
|
|
|
|
];
|
|
|
|
|
|
|
|
if (process.env.FORCE_SSL) {
|
|
|
|
headers.push({
|
|
|
|
key: 'Strict-Transport-Security',
|
|
|
|
value: 'max-age=63072000; includeSubDomains; preload',
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2023-03-09 01:37:43 +01:00
|
|
|
const rewrites = [];
|
|
|
|
|
|
|
|
if (process.env.COLLECT_API_ENDPOINT) {
|
|
|
|
rewrites.push({
|
2023-03-09 01:48:44 +01:00
|
|
|
source: process.env.COLLECT_API_ENDPOINT,
|
|
|
|
destination: '/api/send',
|
2023-03-09 01:37:43 +01:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
const redirects = [];
|
|
|
|
|
|
|
|
if (process.env.CLOUD_MODE) {
|
|
|
|
redirects.push({
|
|
|
|
source: '/login',
|
|
|
|
destination: CLOUD_URL,
|
|
|
|
permanent: false,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
const config = {
|
2020-09-10 01:12:29 +02:00
|
|
|
env: {
|
2022-06-24 10:54:55 +02:00
|
|
|
currentVersion: pkg.version,
|
2022-08-09 19:27:35 +02:00
|
|
|
isProduction: process.env.NODE_ENV === 'production',
|
2020-09-27 05:46:20 +02:00
|
|
|
},
|
2022-02-19 06:30:41 +01:00
|
|
|
basePath: process.env.BASE_PATH,
|
2022-07-07 18:24:32 +02:00
|
|
|
output: 'standalone',
|
2021-11-22 23:53:36 +01:00
|
|
|
eslint: {
|
|
|
|
ignoreDuringBuilds: true,
|
|
|
|
},
|
2022-12-13 04:45:38 +01:00
|
|
|
typescript: {
|
|
|
|
ignoreBuildErrors: true,
|
|
|
|
},
|
2020-07-17 10:03:38 +02:00
|
|
|
webpack(config) {
|
|
|
|
config.module.rules.push({
|
|
|
|
test: /\.svg$/,
|
2022-12-13 04:45:38 +01:00
|
|
|
issuer: /\.{js|jsx|ts|tsx}$/,
|
2020-07-17 10:03:38 +02:00
|
|
|
use: ['@svgr/webpack'],
|
|
|
|
});
|
|
|
|
|
|
|
|
return config;
|
|
|
|
},
|
2020-10-05 09:45:24 +02:00
|
|
|
async headers() {
|
|
|
|
return [
|
2022-08-01 08:29:47 +02:00
|
|
|
{
|
|
|
|
source: '/:path*',
|
|
|
|
headers,
|
|
|
|
},
|
2022-08-02 09:24:17 +02:00
|
|
|
];
|
|
|
|
},
|
|
|
|
async rewrites() {
|
|
|
|
return [
|
2023-03-09 01:37:43 +01:00
|
|
|
...rewrites,
|
2020-10-05 09:45:24 +02:00
|
|
|
{
|
2022-08-02 09:24:17 +02:00
|
|
|
source: '/telemetry.js',
|
|
|
|
destination: '/api/scripts/telemetry',
|
2020-10-05 09:45:24 +02:00
|
|
|
},
|
2020-12-04 07:28:05 +01:00
|
|
|
];
|
2020-10-05 09:45:24 +02:00
|
|
|
},
|
2023-03-09 01:37:43 +01:00
|
|
|
async redirects() {
|
|
|
|
return [...redirects];
|
|
|
|
},
|
2020-07-17 10:03:38 +02:00
|
|
|
};
|
2023-03-09 01:37:43 +01:00
|
|
|
|
|
|
|
module.exports = config;
|