gluestick/next.config.js

10 lines
158 B
JavaScript
Raw Permalink Normal View History

2023-04-24 22:40:19 -04:00
/** @type {import('next').NextConfig} */
const nextConfig = {
experimental: {
appDir: true
2023-04-28 21:19:06 -04:00
},
output: "standalone"
2023-04-24 22:40:19 -04:00
};
module.exports = nextConfig;