mirror of
https://git.rezel.net/LudoTech/traque.git
synced 2026-02-09 10:20:16 +01:00
9 lines
150 B
JavaScript
9 lines
150 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
experimental: {
|
|
outputStandalone: true
|
|
}
|
|
};
|
|
|
|
export default nextConfig;
|