- Pin all dependencies to stable versions (remove 'latest') - Update lucide-react to 0.554.0 for React 19 compatibility - Add Docker support with Dockerfile and docker-compose.yml - Update TypeScript target to ES2022 - Add .nvmrc and netlify.toml for deployment configuration - Update README with Docker deployment instructions
14 lines
262 B
JavaScript
14 lines
262 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
reactStrictMode: true,
|
|
output: 'standalone',
|
|
redirects: async () => [{
|
|
permanent: false,
|
|
destination: '/ps7',
|
|
source: '/'
|
|
}],
|
|
generateEtags: false
|
|
}
|
|
|
|
module.exports = nextConfig
|