cleanup conf

This commit is contained in:
2023-09-16 20:29:01 +02:00
parent 76131aac07
commit e499c5aee2

View File

@@ -1,11 +1,8 @@
import vue from '@vitejs/plugin-vue';
import * as path from "path";
import { defineConfig, loadEnv } from 'vite';
import { defineConfig } from 'vite';
export default defineConfig(({ mode }) => {
const env = loadEnv(mode, process.cwd(), '');
return {
export default defineConfig({
plugins: [vue()],
resolve: {
alias: {
@@ -38,5 +35,4 @@ export default defineConfig(({ mode }) => {
}
}
}
};
})