From cd31ab2331ff8b7ccbcaaff30c455304933debe9 Mon Sep 17 00:00:00 2001 From: proudparrot2 Date: Mon, 15 Jul 2024 21:35:32 -0500 Subject: [PATCH] Remove codecs file from config --- src/config.ts | 1 - src/types.d.ts | 1 - 2 files changed, 2 deletions(-) diff --git a/src/config.ts b/src/config.ts index b23327c..182e684 100644 --- a/src/config.ts +++ b/src/config.ts @@ -37,7 +37,6 @@ export const config: Config = { client: '/meteor/meteor.client.js', worker: '/meteor/meteor.worker.js', bundle: '/meteor/meteor.bundle.js', - codecs: '/meteor/meteor.codecs.js', config: '/meteor/meteor.config.js' } } diff --git a/src/types.d.ts b/src/types.d.ts index abc1b36..e1f22a4 100644 --- a/src/types.d.ts +++ b/src/types.d.ts @@ -25,7 +25,6 @@ export interface Config { client: string worker: string bundle: string - codecs?: string config: string } }