- apps/api: FastAPI backend with Dockerfile - apps/web: Next.js frontend with Dockerfile - apps/sensor: Signal collection agent - packages: shared packages Co-Authored-By: Claude <noreply@anthropic.com>
16 lines
376 B
JavaScript
16 lines
376 B
JavaScript
const createNextIntlPlugin = require('next-intl/plugin')
|
|
|
|
const withNextIntl = createNextIntlPlugin('./src/i18n/request.ts')
|
|
|
|
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
reactStrictMode: true,
|
|
transpilePackages: ['@awoooi/lewooogo-core'],
|
|
output: 'standalone',
|
|
experimental: {
|
|
typedRoutes: true,
|
|
},
|
|
}
|
|
|
|
module.exports = withNextIntl(nextConfig)
|