mirror of
https://github.com/towfiqi/serpbear
synced 2025-06-26 18:15:54 +00:00
14 lines
253 B
JavaScript
14 lines
253 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const { version } = require('./package.json');
|
|
|
|
const nextConfig = {
|
|
reactStrictMode: true,
|
|
swcMinify: false,
|
|
output: 'standalone',
|
|
publicRuntimeConfig: {
|
|
version,
|
|
},
|
|
};
|
|
|
|
module.exports = nextConfig;
|