workspaces_registry_template/site/next.config.js

21 lines
463 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-13 18:21:11 +00:00
listUrl: 'https://registry.kasmweb.com/',
2022-12-14 15:03:50 +00:00
contactUrl: 'https://kasmweb.com/support',
},
reactStrictMode: true,
swcMinify: true,
2023-01-10 18:32:44 +00:00
basePath: '/kasm-apps',
2022-12-14 15:03:50 +00:00
trailingSlash: true,
images: {
unoptimized: true,
}
}
module.exports = nextConfig