Initial commit

This commit is contained in:
2026-01-15 07:26:08 +00:00
committed by GitHub
commit 3e9fc6e4e5
33 changed files with 12056 additions and 0 deletions

21
site/next.config.js Normal file
View File

@@ -0,0 +1,21 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
output: 'export',
distDir: '../public',
env: {
name: 'Kasm Technologies',
description: 'The official store for Kasm supported workspaces.',
icon: '/img/logo.svg',
listUrl: 'https://registry.kasmweb.com/',
contactUrl: 'https://kasmweb.com/support',
},
reactStrictMode: true,
basePath: '/kasm-registry/1.0',
trailingSlash: true,
images: {
unoptimized: true,
}
}
module.exports = nextConfig