IgniteUI / igniteui-dockmanager

Ignite UI Dock Manager Web Component provides means to manage the layout of your application.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Dock manager throws errors with Vite-based builds

ChronosSF opened this issue · comments

Description

Dock manager throws errors with Vite-based builds

Steps to reproduce

DockManagerVite.zip

As a temporary workaround while we further investigate you can modify the vite.config.ts to look like this:

import react from '@vitejs/plugin-react'

// https://vitejs.dev/config/
export default defineConfig({
  plugins: [react()],
  optimizeDeps: {
    exclude: [
      'igniteui-dockmanager'
    ]
  }
})

Fixed in v1.14.3