workspaces_registry_template/site/next.config.js

21 lines
472 B
JavaScript
Raw Normal View History

2022-12-14 15:03:50 +00:00
/** @type {import('next').NextConfig} */
const nextConfig = {
env: {
name: 'Kasm Technologies',
description: 'The official store for Kasm supported applications.',
icon: '/img/logo.svg',
2023-01-06 15:16:35 +00:00
listUrl: 'https://registry.kasmweb.com/list.json',
2022-12-14 15:03:50 +00:00
contactUrl: 'https://kasmweb.com/support',
},
reactStrictMode: true,
swcMinify: true,
basePath: '/kasm-apps',
trailingSlash: true,
images: {
unoptimized: true,
}
}
module.exports = nextConfig