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