138 lines
3.4 KiB
JavaScript
138 lines
3.4 KiB
JavaScript
import { defineConfig } from 'vite'
|
|
import vue from '@vitejs/plugin-vue'
|
|
import vueJsx from '@vitejs/plugin-vue-jsx'
|
|
import path from 'path'
|
|
import fs from 'fs'
|
|
import frappeui from 'frappe-ui/vite'
|
|
import { VitePWA } from 'vite-plugin-pwa'
|
|
|
|
function appPath(app) {
|
|
const root = path.resolve(__dirname, '../..') // points to apps
|
|
const frontendPaths = [
|
|
// Standard frontend structure: appname/frontend/src
|
|
path.join(root, app, 'frontend', 'src'),
|
|
// Desk-based apps: appname/desk/src
|
|
path.join(root, app, 'desk', 'src'),
|
|
// Alternative frontend structures
|
|
path.join(root, app, 'client', 'src'),
|
|
path.join(root, app, 'ui', 'src'),
|
|
// Direct src structure: appname/src
|
|
path.join(root, app, 'src'),
|
|
]
|
|
return frontendPaths.find((srcPath) => fs.existsSync(srcPath)) || null
|
|
}
|
|
|
|
function hasApp(app) {
|
|
return fs.existsSync(appPath(app))
|
|
}
|
|
|
|
// List of frontend apps used in this project
|
|
let apps = []
|
|
|
|
const alias = [
|
|
// Default "@" for this app
|
|
{
|
|
find: '@',
|
|
replacement: path.resolve(__dirname, 'src'),
|
|
},
|
|
|
|
// App-specific aliases like @helpdesk, @hrms, etc.
|
|
...apps.map((app) =>
|
|
hasApp(app)
|
|
? { find: `@${app}`, replacement: appPath(app) }
|
|
: { find: `@${app}`, replacement: `virtual:${app}` },
|
|
),
|
|
]
|
|
|
|
const defineFlags = Object.fromEntries(
|
|
apps.map((app) => [
|
|
`__HAS_${app.toUpperCase()}__`,
|
|
JSON.stringify(hasApp(app)),
|
|
]),
|
|
)
|
|
|
|
const virtualStubPlugin = {
|
|
name: 'virtual-empty-modules',
|
|
resolveId(id) {
|
|
if (id.startsWith('virtual:')) return '\0' + id
|
|
},
|
|
load(id) {
|
|
if (id.startsWith('\0virtual:')) {
|
|
return 'export default {}; export const missing = true;'
|
|
}
|
|
},
|
|
}
|
|
|
|
console.log('Generated app aliases:', alias)
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
define: defineFlags,
|
|
plugins: [
|
|
frappeui({
|
|
frappeProxy: true,
|
|
lucideIcons: true,
|
|
jinjaBootData: true,
|
|
buildConfig: {
|
|
indexHtmlPath: '../crm/www/crm.html',
|
|
emptyOutDir: true,
|
|
sourcemap: true,
|
|
},
|
|
}),
|
|
vue(),
|
|
vueJsx(),
|
|
VitePWA({
|
|
registerType: 'autoUpdate',
|
|
devOptions: {
|
|
enabled: true,
|
|
},
|
|
manifest: {
|
|
display: 'standalone',
|
|
name: 'Frappe CRM',
|
|
short_name: 'Frappe CRM',
|
|
start_url: '/crm',
|
|
description:
|
|
'Modern & 100% Open-source CRM tool to supercharge your sales operations',
|
|
icons: [
|
|
{
|
|
src: '/assets/crm/manifest/manifest-icon-192.maskable.png',
|
|
sizes: '192x192',
|
|
type: 'image/png',
|
|
purpose: 'any',
|
|
},
|
|
{
|
|
src: '/assets/crm/manifest/manifest-icon-192.maskable.png',
|
|
sizes: '192x192',
|
|
type: 'image/png',
|
|
purpose: 'maskable',
|
|
},
|
|
{
|
|
src: '/assets/crm/manifest/manifest-icon-512.maskable.png',
|
|
sizes: '512x512',
|
|
type: 'image/png',
|
|
purpose: 'any',
|
|
},
|
|
{
|
|
src: '/assets/crm/manifest/manifest-icon-512.maskable.png',
|
|
sizes: '512x512',
|
|
type: 'image/png',
|
|
purpose: 'maskable',
|
|
},
|
|
],
|
|
},
|
|
}),
|
|
virtualStubPlugin,
|
|
],
|
|
resolve: { alias },
|
|
optimizeDeps: {
|
|
include: [
|
|
'feather-icons',
|
|
'showdown',
|
|
'tailwind.config.js',
|
|
'prosemirror-state',
|
|
'prosemirror-view',
|
|
'lowlight',
|
|
],
|
|
},
|
|
})
|