mirror of
https://github.com/fosrl/pangolin.git
synced 2025-05-12 21:30:35 +01:00
9 lines
173 B
JavaScript
9 lines
173 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
eslint: {
|
|
ignoreDuringBuilds: true,
|
|
},
|
|
output: "standalone"
|
|
};
|
|
|
|
export default nextConfig;
|