Spaces:
Sleeping
Sleeping
File size: 232 Bytes
4c2a557 | 1 2 3 4 5 6 7 8 9 10 11 12 | /** @type {import('next').NextConfig} */
const packageJson = require("./package.json");
const nextConfig = {
reactStrictMode: true,
env: {
NEXT_PUBLIC_APP_VERSION: packageJson.version,
},
};
module.exports = nextConfig;
|