35 lines
747 B
TypeScript
35 lines
747 B
TypeScript
import { resolve } from 'path'
|
|
import { defineConfig, externalizeDepsPlugin } from 'electron-vite'
|
|
import vue from '@vitejs/plugin-vue'
|
|
import VueI18nPlugin from '@intlify/unplugin-vue-i18n/vite'
|
|
|
|
import tailwind from 'tailwindcss'
|
|
import autoprefixer from 'autoprefixer'
|
|
|
|
export default defineConfig({
|
|
main: {
|
|
plugins: [externalizeDepsPlugin()]
|
|
},
|
|
preload: {
|
|
plugins: [externalizeDepsPlugin()]
|
|
},
|
|
renderer: {
|
|
resolve: {
|
|
alias: {
|
|
'@renderer': resolve('src/renderer/src')
|
|
}
|
|
},
|
|
plugins: [
|
|
vue(),
|
|
VueI18nPlugin({
|
|
jitCompilation: true // Without this, we get CSP errors
|
|
})
|
|
],
|
|
css: {
|
|
postcss: {
|
|
plugins: [tailwind(), autoprefixer()]
|
|
}
|
|
}
|
|
}
|
|
})
|