2022-04-18 08:32:57 +03:00
|
|
|
const withLess = require('next-with-less');
|
2022-10-28 09:13:07 +03:00
|
|
|
const withBundleAnalyzer = require('@next/bundle-analyzer')({
|
|
|
|
enabled: process.env.ANALYZE === 'true',
|
|
|
|
});
|
2022-04-18 08:32:57 +03:00
|
|
|
|
2022-10-28 09:13:07 +03:00
|
|
|
module.exports = withBundleAnalyzer(
|
|
|
|
withLess({
|
|
|
|
trailingSlash: true,
|
|
|
|
reactStrictMode: true,
|
2022-10-29 06:19:11 +03:00
|
|
|
images: {
|
|
|
|
unoptimized: true,
|
|
|
|
},
|
2022-10-28 09:13:07 +03:00
|
|
|
webpack(config) {
|
|
|
|
config.module.rules.push({
|
|
|
|
test: /\.svg$/i,
|
|
|
|
issuer: /\.[jt]sx?$/,
|
|
|
|
use: ['@svgr/webpack'],
|
|
|
|
});
|
2022-05-18 07:20:27 +03:00
|
|
|
|
2022-10-28 09:13:07 +03:00
|
|
|
return config;
|
|
|
|
},
|
|
|
|
async rewrites() {
|
|
|
|
return [
|
|
|
|
{
|
|
|
|
source: '/api/:path*',
|
|
|
|
destination: 'http://localhost:8080/api/:path*', // Proxy to Backend to work around CORS.
|
|
|
|
},
|
|
|
|
{
|
|
|
|
source: '/hls/:path*',
|
|
|
|
destination: 'http://localhost:8080/hls/:path*', // Proxy to Backend to work around CORS.
|
|
|
|
},
|
|
|
|
{
|
|
|
|
source: '/img/:path*',
|
|
|
|
destination: 'http://localhost:8080/img/:path*', // Proxy to Backend to work around CORS.
|
|
|
|
},
|
|
|
|
{
|
|
|
|
source: '/logo',
|
|
|
|
destination: 'http://localhost:8080/logo', // Proxy to Backend to work around CORS.
|
|
|
|
},
|
|
|
|
{
|
|
|
|
source: '/thumbnail.jpg',
|
|
|
|
destination: 'http://localhost:8080/thumbnail.jpg', // Proxy to Backend to work around CORS.
|
|
|
|
},
|
|
|
|
];
|
|
|
|
},
|
|
|
|
pageExtensions: ['tsx'],
|
|
|
|
}),
|
|
|
|
);
|