workspaces_registry_template/site/next.config.js
2023-01-10 16:54:01 +00:00

21 lines
480 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/1.0/list.json',
contactUrl: 'https://kasmweb.com/support',
},
reactStrictMode: true,
swcMinify: true,
basePath: '/kasm-apps/1.0',
trailingSlash: true,
images: {
unoptimized: true,
}
}
module.exports = nextConfig