mirror of
https://github.com/EvolutionAPI/evolution-manager.git
synced 2025-07-13 07:04:50 -06:00
58 lines
1.2 KiB
JavaScript
58 lines
1.2 KiB
JavaScript
// Plugins
|
|
import vue from '@vitejs/plugin-vue'
|
|
import vuetify, { transformAssetUrls } from 'vite-plugin-vuetify'
|
|
import ViteFonts from 'unplugin-fonts/vite'
|
|
|
|
// Utilities
|
|
import { defineConfig, loadEnv } from 'vite'
|
|
import { fileURLToPath, URL } from 'node:url'
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig(({ command, mode }) => {
|
|
const env = loadEnv(mode, process.cwd(), '')
|
|
const BASE_URL = env.VITE_BASE_URL || '/'
|
|
|
|
return {
|
|
plugins: [
|
|
vue({
|
|
template: { transformAssetUrls }
|
|
}),
|
|
vuetify({
|
|
autoImport: true,
|
|
styles: {
|
|
configFile: 'src/styles/settings.scss',
|
|
},
|
|
}),
|
|
ViteFonts({
|
|
google: {
|
|
families: [{
|
|
name: 'Roboto',
|
|
styles: 'wght@100;300;400;500;700;900',
|
|
}],
|
|
},
|
|
}),
|
|
],
|
|
define: { 'process.env': {} },
|
|
base: BASE_URL,
|
|
|
|
resolve: {
|
|
alias: {
|
|
'@': fileURLToPath(new URL('./src', import.meta.url)),
|
|
'@docs': fileURLToPath(new URL('./docs', import.meta.url))
|
|
},
|
|
extensions: [
|
|
'.js',
|
|
'.json',
|
|
'.jsx',
|
|
'.mjs',
|
|
'.ts',
|
|
'.tsx',
|
|
'.vue',
|
|
],
|
|
},
|
|
server: {
|
|
port: 3000,
|
|
},
|
|
}
|
|
})
|