mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-16 02:05:04 +01:00
178 lines
3.8 KiB
JavaScript
178 lines
3.8 KiB
JavaScript
/* eslint-disable @typescript-eslint/no-var-requires */
|
|
require('dotenv').config();
|
|
const path = require('path');
|
|
const pkg = require('./package.json');
|
|
|
|
const basePath = process.env.BASE_PATH || '';
|
|
const forceSSL = process.env.FORCE_SSL || '';
|
|
const collectApiEndpoint = process.env.COLLECT_API_ENDPOINT || '';
|
|
const defaultLocale = process.env.DEFAULT_LOCALE || '';
|
|
const trackerScriptName = process.env.TRACKER_SCRIPT_NAME || '';
|
|
const cloudMode = process.env.CLOUD_MODE || '';
|
|
const cloudUrl = process.env.CLOUD_URL || '';
|
|
const frameAncestors = process.env.ALLOWED_FRAME_URLS || '';
|
|
const disableLogin = process.env.DISABLE_LOGIN || '';
|
|
const disableUI = process.env.DISABLE_UI || '';
|
|
const hostURL = process.env.HOST_URL || '';
|
|
|
|
const contentSecurityPolicy = [
|
|
`default-src 'self'`,
|
|
`img-src *`,
|
|
`script-src 'self' 'unsafe-eval' 'unsafe-inline'`,
|
|
`style-src 'self' 'unsafe-inline'`,
|
|
`connect-src 'self' api.umami.is cloud.umami.is`,
|
|
`frame-ancestors 'self' ${frameAncestors}`,
|
|
];
|
|
|
|
const headers = [
|
|
{
|
|
key: 'X-DNS-Prefetch-Control',
|
|
value: 'on',
|
|
},
|
|
{
|
|
key: 'Content-Security-Policy',
|
|
value: contentSecurityPolicy
|
|
.join(';')
|
|
.replace(/\s{2,}/g, ' ')
|
|
.trim(),
|
|
},
|
|
];
|
|
|
|
if (forceSSL) {
|
|
headers.push({
|
|
key: 'Strict-Transport-Security',
|
|
value: 'max-age=63072000; includeSubDomains; preload',
|
|
});
|
|
}
|
|
|
|
const rewrites = [];
|
|
|
|
if (collectApiEndpoint) {
|
|
rewrites.push({
|
|
source: collectApiEndpoint,
|
|
destination: '/api/send',
|
|
});
|
|
}
|
|
|
|
if (trackerScriptName) {
|
|
const names = trackerScriptName?.split(',').map(name => name.trim());
|
|
|
|
if (names) {
|
|
names.forEach(name => {
|
|
rewrites.push({
|
|
source: `/${name.replace(/^\/+/, '')}`,
|
|
destination: '/script.js',
|
|
});
|
|
});
|
|
}
|
|
}
|
|
|
|
const redirects = [
|
|
{
|
|
source: '/settings',
|
|
destination: '/settings/websites',
|
|
permanent: true,
|
|
},
|
|
{
|
|
source: '/teams/:id',
|
|
destination: '/teams/:id/dashboard',
|
|
permanent: true,
|
|
},
|
|
{
|
|
source: '/teams/:id/settings',
|
|
destination: '/teams/:id/settings/team',
|
|
permanent: true,
|
|
},
|
|
];
|
|
|
|
if (cloudMode && cloudUrl) {
|
|
redirects.push({
|
|
source: '/settings/:path*',
|
|
destination: `${cloudUrl}/settings/:path*`,
|
|
permanent: false,
|
|
});
|
|
|
|
redirects.push({
|
|
source: '/teams/:id/settings/:path*',
|
|
destination: `${cloudUrl}/teams/:id/settings/:path*`,
|
|
permanent: false,
|
|
});
|
|
|
|
if (disableLogin) {
|
|
redirects.push({
|
|
source: '/login',
|
|
destination: cloudUrl,
|
|
permanent: false,
|
|
});
|
|
}
|
|
}
|
|
|
|
/** @type {import('next').NextConfig} */
|
|
const config = {
|
|
reactStrictMode: false,
|
|
env: {
|
|
basePath,
|
|
cloudMode,
|
|
cloudUrl,
|
|
configUrl: '/config',
|
|
currentVersion: pkg.version,
|
|
defaultLocale,
|
|
disableLogin,
|
|
disableUI,
|
|
hostURL,
|
|
},
|
|
basePath,
|
|
output: 'standalone',
|
|
eslint: {
|
|
ignoreDuringBuilds: true,
|
|
},
|
|
typescript: {
|
|
ignoreBuildErrors: true,
|
|
},
|
|
webpack(config) {
|
|
const fileLoaderRule = config.module.rules.find(rule => rule.test?.test?.('.svg'));
|
|
|
|
config.module.rules.push(
|
|
{
|
|
...fileLoaderRule,
|
|
test: /\.svg$/i,
|
|
resourceQuery: /url/,
|
|
},
|
|
{
|
|
test: /\.svg$/i,
|
|
issuer: fileLoaderRule.issuer,
|
|
resourceQuery: { not: [...fileLoaderRule.resourceQuery.not, /url/] },
|
|
use: ['@svgr/webpack'],
|
|
},
|
|
);
|
|
|
|
fileLoaderRule.exclude = /\.svg$/i;
|
|
|
|
config.resolve.alias['public'] = path.resolve('./public');
|
|
|
|
return config;
|
|
},
|
|
async headers() {
|
|
return [
|
|
{
|
|
source: '/:path*',
|
|
headers,
|
|
},
|
|
];
|
|
},
|
|
async rewrites() {
|
|
return [
|
|
...rewrites,
|
|
{
|
|
source: '/telemetry.js',
|
|
destination: '/api/scripts/telemetry',
|
|
},
|
|
];
|
|
},
|
|
async redirects() {
|
|
return [...redirects];
|
|
},
|
|
};
|
|
|
|
module.exports = config;
|