14 lines
242 B
TypeScript
14 lines
242 B
TypeScript
|
|
import type { NextConfig } from "next";
|
||
|
|
|
||
|
|
const nextConfig: NextConfig = {
|
||
|
|
output: "standalone",
|
||
|
|
experimental: {
|
||
|
|
optimizePackageImports: ["lucide-react"],
|
||
|
|
},
|
||
|
|
turbopack: {
|
||
|
|
root: process.cwd(),
|
||
|
|
}
|
||
|
|
};
|
||
|
|
|
||
|
|
export default nextConfig;
|