From ec97f40327af0093077f58080fcde965d965bdee Mon Sep 17 00:00:00 2001 From: David Dal Busco Date: Sat, 12 Apr 2025 10:09:45 +0200 Subject: [PATCH] feat: remove juno.dev.config --- templates/react-ts-example/juno.dev.config.ts | 26 ------------------- 1 file changed, 26 deletions(-) delete mode 100644 templates/react-ts-example/juno.dev.config.ts diff --git a/templates/react-ts-example/juno.dev.config.ts b/templates/react-ts-example/juno.dev.config.ts deleted file mode 100644 index 3e33a9f..0000000 --- a/templates/react-ts-example/juno.dev.config.ts +++ /dev/null @@ -1,26 +0,0 @@ -import { defineDevConfig } from "@junobuild/config"; - -export default defineDevConfig(() => ({ - satellite: { - collections: { - datastore: [ - { - collection: "notes", - read: "managed" as const, - write: "managed" as const, - memory: "stable" as const, - mutablePermissions: true, - }, - ], - storage: [ - { - collection: "images", - read: "managed" as const, - write: "managed" as const, - memory: "stable" as const, - mutablePermissions: true, - }, - ], - }, - }, -}));