9 lines
183 B
JavaScript
9 lines
183 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
output: "standalone",
|
|
basePath: "",
|
|
experimental: {
|
|
useLightningcss: false,
|
|
},
|
|
};
|
|
export default nextConfig;
|