Geen omschrijving
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

vite.config.ts 295B

123456789101112
  1. import { defineConfig } from 'vite';
  2. import angular from '@analogjs/vite-plugin-angular';
  3. export default defineConfig({
  4. plugins: [angular()],
  5. optimizeDeps: {
  6. include: ['ag-grid-angular', 'ag-grid-community']
  7. },
  8. ssr: {
  9. noExternal: ['ag-grid-angular', 'ag-grid-community']
  10. }
  11. });