gege-jdr/vite.config.ts

18 lines
394 B
TypeScript
Raw Normal View History

2024-02-10 17:30:09 +00:00
import { fileURLToPath, URL } from 'node:url';
2024-02-10 17:30:09 +00:00
import { defineConfig } from 'vite';
import vue from '@vitejs/plugin-vue';
// https://vitejs.dev/config/
export default defineConfig({
2024-02-10 17:30:09 +00:00
plugins: [vue()],
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),
},
});