9 lines
178 B
JavaScript
9 lines
178 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
experimental: {
|
|
serverComponentsExternalPackages: ['ical.js', 'tsdav'],
|
|
},
|
|
};
|
|
|
|
module.exports = nextConfig;
|