49 lines
947 B
JavaScript
49 lines
947 B
JavaScript
import { defineConfig } from 'vite'
|
|
import vue from '@vitejs/plugin-vue'
|
|
import path from 'path'
|
|
import frappeui from 'frappe-ui/vite'
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
plugins: [
|
|
frappeui({
|
|
frappeProxy: true,
|
|
lucideIcons: true,
|
|
jinjaBootData: true,
|
|
frappeTypes: {
|
|
input: {},
|
|
},
|
|
buildConfig: {
|
|
indexHtmlPath: '../lms/www/lms.html',
|
|
},
|
|
}),
|
|
vue({
|
|
script: {
|
|
defineModel: true,
|
|
propsDestructure: true,
|
|
},
|
|
}),
|
|
],
|
|
server: {
|
|
host: '0.0.0.0', // Accept connections from any network interface
|
|
allowedHosts: ['ps', 'fs'], // Explicitly allow this host
|
|
},
|
|
resolve: {
|
|
alias: {
|
|
'@': path.resolve(__dirname, 'src'),
|
|
'tailwind.config.js': path.resolve(__dirname, 'tailwind.config.js'),
|
|
},
|
|
},
|
|
optimizeDeps: {
|
|
include: [
|
|
'feather-icons',
|
|
'showdown',
|
|
'engine.io-client',
|
|
'tailwind.config.js',
|
|
'interactjs',
|
|
'highlight.js',
|
|
'plyr',
|
|
],
|
|
},
|
|
})
|