From 0e1442c162ea3ee882bfeab4022989f2b992c784 Mon Sep 17 00:00:00 2001 From: Tom Moroney Date: Sat, 5 Oct 2024 21:24:20 +0100 Subject: [PATCH] Create next.config.js --- next.config.js | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 next.config.js diff --git a/next.config.js b/next.config.js new file mode 100644 index 0000000..0eb7fbb --- /dev/null +++ b/next.config.js @@ -0,0 +1,8 @@ +/** @type {import('next').NextConfig} */ +const nextConfig = { + basePath: "/auto-subs", + output: "export", // Enables static exports + reactStrictMode: true, +}; + +module.exports = nextConfig; \ No newline at end of file