feat: improve frontend image

This commit is contained in:
swve 2024-04-20 11:51:01 +02:00
parent a6742d17c1
commit d5791d99d5
9 changed files with 343 additions and 604 deletions

View file

@ -1,25 +1,8 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: false,
output: 'standalone',
}
const { withSentryConfig } = require("@sentry/nextjs");
module.exports = nextConfig
const SentryWebpackPluginOptions = {
// For all available options, see:
// https://docs.sentry.io/platforms/javascript/guides/nextjs/manual-setup/
// Upload a larger set of source maps for prettier stack traces (increases build time)
widenClientFileUpload: true,
// Transpiles SDK to be compatible with IE11 (increases bundle size)
transpileClientSDK: true,
// Routes browser requests to Sentry through a Next.js rewrite to circumvent ad-blockers (increases server load)
tunnelRoute: "/monitoring",
// Hides source maps from generated client bundles
hideSourceMaps: true,
}
module.exports = withSentryConfig(nextConfig, SentryWebpackPluginOptions);