workspaces_registry_template/site/next.config.js

22 lines
491 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-10 18:32:44 +00:00
listUrl: 'https://registry.kasmweb.com/list.json',
2022-12-14 15:03:50 +00:00
contactUrl: 'https://kasmweb.com/support',
2023-01-10 18:32:44 +00:00
schema: '1.0',
2022-12-14 15:03:50 +00:00
},
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