Files
towercontrol/next.config.ts
Julien Froidefond 4f137455f4 fix: lint
2025-09-16 22:13:28 +02:00

15 lines
222 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
output: 'standalone',
experimental: {
turbo: {
rules: {
'*.sql': ['raw'],
},
},
},
};
export default nextConfig;