- Fix Docker build: resolve hooks-rules-of-hooks in GridTaskBlock, add Suspense boundary for useSearchParams, fix non-root user home dir and prisma binary path - Add comprehensive DB migrations for missing columns/tables (WeeklyGoal, CachedCalendarEvent, User settings, SomedayList sync fields, Task subtasks) - Fix Outlook OAuth redirect using NEXTAUTH_URL instead of request.url - Fix CalendarEventModal preserving existing event dates (support flat format) - Fix header z-index layering so goal text doesn't block hover controls - Convert font size selects to free-form text inputs, add dayHeaderGap setting - Add goal 2-line clamping with 500px max width - Fix weekend colors not applying to date elements v1.6.0 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
24 lines
583 B
JavaScript
24 lines
583 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const { version } = require('./package.json');
|
|
|
|
const nextConfig = {
|
|
output: 'standalone',
|
|
env: {
|
|
NEXT_PUBLIC_APP_VERSION: version,
|
|
},
|
|
experimental: {
|
|
serverComponentsExternalPackages: ['ical.js', 'tsdav', 'apple-icloud'],
|
|
},
|
|
webpack: (config, { isServer }) => {
|
|
// Ignore .md files in node_modules (fixes apple-icloud README.md parse error)
|
|
config.module.rules.push({
|
|
test: /\.md$/,
|
|
include: /node_modules/,
|
|
type: 'asset/source',
|
|
});
|
|
return config;
|
|
},
|
|
};
|
|
|
|
module.exports = nextConfig;
|