mirror of
https://github.com/oven-sh/bun
synced 2026-02-02 15:08:46 +00:00
* fix a few ipc issues * a * my own revisions * remove none as a valid type * a * fix windows build * remove comment * make it work !!!!!!!! * a * formatter nonsense * blah * huge update refactor * awa * wow * okay
11 lines
242 B
JavaScript
11 lines
242 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
reactStrictMode: true,
|
|
generateBuildId: async () => {
|
|
// You can, for example, get the latest git commit hash here
|
|
return "bun!";
|
|
},
|
|
};
|
|
|
|
module.exports = nextConfig;
|