86 lines
2.0 KiB
JavaScript
86 lines
2.0 KiB
JavaScript
import { defineConfig } from 'vite'
|
|
import vue from '@vitejs/plugin-vue'
|
|
import vueJsx from '@vitejs/plugin-vue-jsx'
|
|
import path from 'path'
|
|
import frappeui from 'frappe-ui/vite'
|
|
import { VitePWA } from 'vite-plugin-pwa'
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
plugins: [
|
|
frappeui({
|
|
frappeProxy: true,
|
|
lucideIcons: true,
|
|
jinjaBootData: true,
|
|
buildConfig: {
|
|
indexHtmlPath: '../crm/www/crm.html',
|
|
emptyOutDir: true,
|
|
sourcemap: true,
|
|
},
|
|
}),
|
|
vue({
|
|
template: {
|
|
compilerOptions: {
|
|
isCustomElement: (tag) => tag.startsWith('Lucide'),
|
|
},
|
|
},
|
|
}),
|
|
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',
|
|
},
|
|
],
|
|
},
|
|
}),
|
|
],
|
|
resolve: {
|
|
alias: {
|
|
'@': path.resolve(__dirname, 'src'),
|
|
},
|
|
},
|
|
optimizeDeps: {
|
|
include: [
|
|
'feather-icons',
|
|
'showdown',
|
|
'tailwind.config.js',
|
|
'prosemirror-state',
|
|
'prosemirror-view',
|
|
'lowlight',
|
|
],
|
|
},
|
|
})
|