13 lines
264 B
TypeScript
13 lines
264 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
output: "standalone",
|
|
outputFileTracingIncludes: {
|
|
"./**/*": [
|
|
"./node_modules/@libsql/darwin*/**/*",
|
|
"./node_modules/@libsql/linux*/**/*",
|
|
],
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|