short-url/next.config.js

8 lines
130 B
JavaScript
Raw Normal View History

2024-11-29 20:46:12 +08:00
/** @type {import('next').NextConfig} */
const nextConfig = {
output: 'standalone',
}
2024-11-30 08:19:57 +08:00
module.exports = nextConfig
2024-11-29 20:46:12 +08:00