Files
bun.sh/test/integration/next-pages/next.config.js
dave caruso 81badbac4c fix(ipc): add json ipc type + buffer incoming messages until a listener is attached. (#8733)
* 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
2024-04-01 01:51:15 -07:00

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;