From f8c351d57b260fdef1d68d219f9a2340f77cb66c Mon Sep 17 00:00:00 2001 From: Aaron Yarborough Date: Tue, 12 Mar 2024 23:34:40 +0000 Subject: [PATCH] chore: missed prev commit --- content/writing/static-site-on-google-cloud.md | 5 +++++ next.config.mjs | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 content/writing/static-site-on-google-cloud.md diff --git a/content/writing/static-site-on-google-cloud.md b/content/writing/static-site-on-google-cloud.md new file mode 100644 index 0000000..a777b87 --- /dev/null +++ b/content/writing/static-site-on-google-cloud.md @@ -0,0 +1,5 @@ +--- +title: Deploy aaronjy.me on a Google Storage bucket +desc: TBD +--- + diff --git a/next.config.mjs b/next.config.mjs index 3165df0..aecfe96 100644 --- a/next.config.mjs +++ b/next.config.mjs @@ -2,7 +2,7 @@ const nextConfig = { reactStrictMode: true, output: 'export', - trailingSlash: true // ensure pages get their own directory in output + trailingSlash: true // ensure pages get their own directory in output } export default nextConfig