diff options
author | Saturneric <[email protected]> | 2023-04-24 04:38:32 +0000 |
---|---|---|
committer | Saturneric <[email protected]> | 2023-04-24 04:38:32 +0000 |
commit | 62709ebfc05b3cc5e01f0e631c7a5f2a708c51d2 (patch) | |
tree | b44f48caa5b0bc97adbc78be3a459ced2b52c0b3 | |
parent | fix: tidy up project root directory (diff) | |
download | GpgFrontend-62709ebfc05b3cc5e01f0e631c7a5f2a708c51d2.tar.gz GpgFrontend-62709ebfc05b3cc5e01f0e631c7a5f2a708c51d2.zip |
feat: support aws amplify for manual deploying
-rw-r--r-- | amplify.yml | 13 | ||||
-rw-r--r-- | manual/index.html | 1 |
2 files changed, 14 insertions, 0 deletions
diff --git a/amplify.yml b/amplify.yml new file mode 100644 index 00000000..60495a1c --- /dev/null +++ b/amplify.yml @@ -0,0 +1,13 @@ +version: 1 +frontend: + phases: + # IMPORTANT - Please verify your build commands + build: + commands: [] + artifacts: + # IMPORTANT - Please verify your build output directory + baseDirectory: /manual + files: + - '**/*' + cache: + paths: [] diff --git a/manual/index.html b/manual/index.html index b1e0766b..edb781e7 100644 --- a/manual/index.html +++ b/manual/index.html @@ -18,6 +18,7 @@ name: 'GpgFrontend', loadNavbar: true, loadSidebar: true, + routerMode: 'history', coverpage: true, onlyCover: true, subMaxLevel: 3, |