21 lines
463 B
JavaScript
21 lines
463 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
|
|
const nextConfig = {
|
|
env: {
|
|
name: 'Kasm Technologies',
|
|
description: 'The official store for Kasm supported applications.',
|
|
icon: '/img/logo.svg',
|
|
listUrl: 'https://registry.kasmweb.com/',
|
|
contactUrl: 'https://kasmweb.com/support',
|
|
},
|
|
reactStrictMode: true,
|
|
swcMinify: true,
|
|
basePath: '/kasm-apps',
|
|
trailingSlash: true,
|
|
images: {
|
|
unoptimized: true,
|
|
}
|
|
}
|
|
|
|
module.exports = nextConfig
|