19 lines
414 B
TypeScript
19 lines
414 B
TypeScript
import { resolve } from 'path'
|
|||
|
|
import { defineConfig } from 'electron-vite'
|
||
|
|
import react from '@vitejs/plugin-react'
|
||
|
|
import tailwindcss from '@tailwindcss/vite'
|
||
|
|
|
||
|
|
export default defineConfig({
|
||
|
|
main: {},
|
||
|
|
preload: {},
|
||
|
|
renderer: {
|
||
|
|
resolve: {
|
||
|
|
alias: {
|
||
|
|
'@renderer': resolve('src/renderer/src'),
|
||
|
|
'@shared': resolve('src/shared')
|
||
|
|
}
|
||
|
|
},
|
||
|
|
plugins: [react(), tailwindcss()]
|
||
|
|
}
|
||
|
|
})
|