OpenWebUI-Monitor / next.config.js
3v324v23's picture
all
4c2a557
/** @type {import('next').NextConfig} */
const packageJson = require("./package.json");
const nextConfig = {
reactStrictMode: true,
env: {
NEXT_PUBLIC_APP_VERSION: packageJson.version,
},
};
module.exports = nextConfig;