diff --git a/vite.config.ts b/vite.config.ts index 206769f..d3c7841 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -5,15 +5,17 @@ import viteTsConfigPaths from 'vite-tsconfig-paths' import tailwindcss from '@tailwindcss/vite' const config = defineConfig({ - plugins: [ - // this is the plugin that enables path aliases - viteTsConfigPaths({ - projects: ['./tsconfig.json'], - }), - tailwindcss(), - tanstackStart(), - viteReact(), - ], + plugins: [ + viteTsConfigPaths({ + projects: ['./tsconfig.json'], + }), + tailwindcss(), + tanstackStart(), + viteReact(), + ], + preview: { + allowedHosts: ['test.joesfarms.de'], + }, }) -export default config +export default config \ No newline at end of file