mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-12-03 18:00:36 +00:00
10 lines
223 B
JavaScript
10 lines
223 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
typescript: {
|
|
// TODO: Remove this once we fix the build errors
|
|
ignoreBuildErrors: true,
|
|
},
|
|
output: 'standalone',
|
|
};
|
|
|
|
module.exports = nextConfig;
|