alas/web/next.config.js

11 lines
192 B
JavaScript
Raw Permalink Normal View History

2022-07-03 15:29:11 +00:00
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
2022-07-03 17:29:29 +00:00
output: 'standalone',
experimental: {
outputStandalone: true,
}
2022-07-03 15:29:11 +00:00
}
module.exports = nextConfig