| 123456789101112131415161718 |
- import { vendureDashboardPlugin } from '@vendure/dashboard/vite';
- import path from 'path';
- import { pathToFileURL } from 'url';
- import { defineConfig } from 'vite';
- export default defineConfig({
- base: '/dashboard/',
- plugins: [
- vendureDashboardPlugin({
- vendureConfigPath: pathToFileURL('./dev-config.ts'),
- api: {
- host: 'http://localhost',
- port: 3000,
- },
- gqlOutputPath: path.resolve(__dirname, './graphql/'),
- }),
- ],
- });
|