shadcn-studio/next.config.ts
Aayush Makwana 0883162a39 feat(multi): added new themes and component variants
Added Calendar, Combobox, Date and Time Picker, Form, Input, Input Mask, Input OTP, Select, Switch & Textarea component variants
Added Art Deco & Marshmallow themes
2025-06-20 19:47:31 +05:30

34 lines
656 B
TypeScript

import type { NextConfig } from 'next'
const nextConfig: NextConfig = {
basePath: process.env.BASEPATH,
redirects: async () => {
return [
{
source: '/',
destination: '/theme-generator',
permanent: true
},
{
source: '/theme-editor',
destination: '/theme-generator',
permanent: true
},
{
source: '/docs',
destination: '/docs/getting-started/introduction',
permanent: true
}
]
},
images: {
remotePatterns: [
{
protocol: 'https',
hostname: 'images.unsplash.com'
}
]
}
}
export default nextConfig