webamp/packages/skin-database/next.config.js
Jordan Eldredge 26a6002ce8 Fix deploy
2025-12-03 18:12:43 -05:00

16 lines
413 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
typescript: {
// !! WARN !!
// Dangerously allow production builds to successfully complete even if
// your project has type errors.
// !! WARN !!
ignoreBuildErrors: true,
},
serverExternalPackages: ["knex", "imagemin-optipng", "discord.js"],
experimental: {
viewTransition: true,
},
};
module.exports = nextConfig;