mirror of
https://github.com/shadcnstudio/shadcn-studio
synced 2026-04-21 13:27:16 +00:00
Added Calendar, Combobox, Date and Time Picker, Form, Input, Input Mask, Input OTP, Select, Switch & Textarea component variants Added Art Deco & Marshmallow themes
34 lines
656 B
TypeScript
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
|