workspaces_registry_template/site/next.config.js

21 lines
469 B
JavaScript
Raw Normal View History

2022-12-14 15:03:50 +00:00
/** @type {import('next').NextConfig} */
const nextConfig = {
env: {
name: 'Kasm Technologies',
2023-01-19 11:18:02 +00:00
description: 'The official store for Kasm supported workspaces.',
2022-12-14 15:03:50 +00:00
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-19 11:18:02 +00:00
basePath: '/kasm-registry/1.0',
2022-12-14 15:03:50 +00:00
trailingSlash: true,
images: {
unoptimized: true,
}
}
module.exports = nextConfig