gluestick/next.config.js

10 lines
158 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
experimental: {
appDir: true
},
output: "standalone"
};
module.exports = nextConfig;