khronoz's picture
Update .env example & next.config
1ee8e6f
raw
history blame
324 Bytes
/** @type {import('next').NextConfig} */
const nextConfig = {
experimental: {
serverComponentsExternalPackages: ["llamaindex"],
},
compiler: {
// Enables the styled-components SWC transform
styledComponents: true
},
publicRuntimeConfig: {
serverActions: true,
},
};
module.exports = nextConfig;