mirror of
https://github.com/biersoeckli/QuickStack.git
synced 2026-01-01 17:20:14 -06:00
10 lines
183 B
JavaScript
10 lines
183 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
output: 'standalone',
|
|
/* experimental: {
|
|
instrumentationHook: true
|
|
}*/
|
|
};
|
|
|
|
export default nextConfig;
|