Skip to content

Commit

Permalink
fix(hpc-vmware-managed-vdc): fix vite config file missing (#12027)
Browse files Browse the repository at this point in the history
ref: MANAGER-14419

Signed-off-by: David Arsène <david.arsene.ext@ovhcloud.com>
  • Loading branch information
darsene committed Jun 21, 2024
1 parent 9bff7dc commit 7ee4fb6
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
export default {
listing: {
datagrid: {
serviceKey: 'hpc-vcd',
serviceKey: 'id',
},
},
rootLabel: 'hpc-vmware-managed-vcd',
Expand Down
8 changes: 8 additions & 0 deletions packages/manager/apps/hpc-vmware-managed-vcd/vite.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import { defineConfig } from 'vite';
import { getBaseConfig } from '@ovh-ux/manager-vite-config';
import { resolve } from 'path';

export default defineConfig({
...getBaseConfig(),
root: resolve(process.cwd()),
});

0 comments on commit 7ee4fb6

Please sign in to comment.