23 lines
512 B
TypeScript
23 lines
512 B
TypeScript
import { fileURLToPath, URL } from 'node:url'
|
|
|
|
import { defineConfig } from 'vite'
|
|
import { imagetools } from 'vite-imagetools'
|
|
import autoprefixer from 'autoprefixer'
|
|
import vue from '@vitejs/plugin-vue'
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
base: "/viktor/",
|
|
plugins: [vue(), imagetools()],
|
|
resolve: {
|
|
alias: {
|
|
'@': fileURLToPath(new URL('./src', import.meta.url))
|
|
}
|
|
},
|
|
css: {
|
|
devSourcemap: true,
|
|
postcss: {
|
|
plugins: [autoprefixer({})]
|
|
}
|
|
}
|
|
})
|