Browse Source

chore(dev-server): Remove theme configuration from Vite setup for simplification

David Höck 9 months ago
parent
commit
a9003f0354
1 changed files with 0 additions and 12 deletions
  1. 0 12
      packages/dev-server/vite.config.mts

+ 0 - 12
packages/dev-server/vite.config.mts

@@ -9,18 +9,6 @@ export default defineConfig({
             vendureConfigPath: pathToFileURL('./dev-config.ts'),
             vendureConfigPath: pathToFileURL('./dev-config.ts'),
             adminUiConfig: { apiHost: 'http://localhost', apiPort: 3000 },
             adminUiConfig: { apiHost: 'http://localhost', apiPort: 3000 },
             gqlTadaOutputPath: path.resolve(__dirname, './graphql/'),
             gqlTadaOutputPath: path.resolve(__dirname, './graphql/'),
-            theme: {
-                light: {
-                    brand: 'red',
-                    'brand-lighter': 'red',
-                    'brand-darker': 'red',
-                },
-                dark: {
-                    brand: 'red',
-                    'brand-lighter': 'red',
-                    'brand-darker': 'red',
-                },
-            },
         }) as any,
         }) as any,
     ],
     ],
 });
 });