2024-02-10 17:30:09 +00:00
|
|
|
import { fileURLToPath, URL } from 'node:url';
|
2024-02-10 09:55:11 +00:00
|
|
|
|
2024-02-10 17:30:09 +00:00
|
|
|
import { defineConfig } from 'vite';
|
|
|
|
import vue from '@vitejs/plugin-vue';
|
2024-02-10 09:55:11 +00:00
|
|
|
|
|
|
|
// https://vitejs.dev/config/
|
|
|
|
export default defineConfig({
|
2024-02-10 17:30:09 +00:00
|
|
|
plugins: [vue()],
|
2024-02-10 09:55:11 +00:00
|
|
|
resolve: {
|
|
|
|
alias: {
|
2024-02-10 17:30:09 +00:00
|
|
|
'@': fileURLToPath(new URL('./src', import.meta.url)),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
define: {
|
|
|
|
__APP_VERSION__: JSON.stringify(process.env.npm_package_version),
|
|
|
|
},
|
|
|
|
});
|