workspaces_registry_template/site/next.config.js

23 lines
513 B
JavaScript

/** @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,
swcMinify: true,
basePath: '/kasm-registry/1.0',
trailingSlash: true,
images: {
unoptimized: true,
}
}
module.exports = nextConfig