three_china/vite.config.ts
nicomacbookpro 8a783ec68f
All checks were successful
Deploy / test (push) Successful in 2s
first commit
2025-06-05 11:04:12 +08:00

14 lines
274 B
TypeScript

import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import path from 'path'
// https://vite.dev/config/
export default defineConfig({
plugins: [vue()],
resolve: {
alias: {
'@': path.resolve(__dirname, './src'),
},
},
base: './'
})