Testing CI/CD

This commit is contained in:
2024-01-24 14:13:17 -05:00
parent 7119957c9e
commit a642ed87c4
20 changed files with 358 additions and 8 deletions

View File

@@ -1,5 +1,12 @@
/** @type {import('next').NextConfig} */
const nextConfig = {};
const nextConfig = {
experimental: {
outputStandalone: true,
},
typescript: {
ignoreBuildErrors: true,
}
};
export default nextConfig;