diff options
author | Fushihara <1039534+fushihara@users.noreply.github.com> | 2024-09-23 15:19:25 +0900 |
---|---|---|
committer | Fushihara <1039534+fushihara@users.noreply.github.com> | 2024-09-23 15:19:25 +0900 |
commit | ba0c8d73e585d7ff249dd90684254bc7fa025544 (patch) | |
tree | 3b35be04e7bf11eb046246696d45fb8854f01f14 /next.config.mjs | |
parent | 41eff0687f69539a514cfa3a28a68f89fc8c54fd (diff) |
commit
Diffstat (limited to 'next.config.mjs')
-rw-r--r-- | next.config.mjs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/next.config.mjs b/next.config.mjs new file mode 100644 index 0000000..1913058 --- /dev/null +++ b/next.config.mjs @@ -0,0 +1,9 @@ +/** @type {import('next').NextConfig} */ +const nextConfig = { + output: "export", + basePath: "/akiba-souken-archive", + distDir: ".ssg-output/akiba-souken-archive", + trailingSlash: true, +}; + +export default nextConfig; |