diff options
| author | Tyler Hoang <tyler@tylerhoang.xyz> | 2026-05-17 12:46:13 -0700 |
|---|---|---|
| committer | Tyler Hoang <tyler@tylerhoang.xyz> | 2026-05-17 12:46:13 -0700 |
| commit | 1482422f2f5b236cdcdff4429ae06bb55dca4083 (patch) | |
| tree | 4653cb4986a8a138f84dbec934effb0d011751d3 /frontend/next.config.ts | |
Add stack start and stop scripts
Diffstat (limited to 'frontend/next.config.ts')
| -rw-r--r-- | frontend/next.config.ts | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/frontend/next.config.ts b/frontend/next.config.ts new file mode 100644 index 0000000..bf53630 --- /dev/null +++ b/frontend/next.config.ts @@ -0,0 +1,7 @@ +import type { NextConfig } from "next"; + +const nextConfig: NextConfig = { + reactStrictMode: true +}; + +export default nextConfig; |
