Skip to content

Commit

Permalink
fix: force dynamic
Browse files Browse the repository at this point in the history
  • Loading branch information
gary-van-woerkens committed May 29, 2024
1 parent e6e31b3 commit 1f7306e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/api/vault/route.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
"use server";

import Vault from "node-vault";

var options = {
Expand All @@ -9,6 +7,8 @@ var options = {

console.log("VAS Y FAIS UN TRUC !");

export const dynamic = "force-dynamic";

export async function GET() {
var vault = Vault(options);
process.stdout.write("VAULT: " + JSON.stringify(vault));
Expand Down

0 comments on commit 1f7306e

Please sign in to comment.