18 lines
323 B
TypeScript
18 lines
323 B
TypeScript
import { defineConfig } from 'vite'
|
|
import vue from '@vitejs/plugin-vue'
|
|
import path from 'node:path'
|
|
|
|
export default defineConfig({
|
|
plugins: [vue()],
|
|
base: './',
|
|
resolve: {
|
|
alias: {
|
|
'@shared': path.resolve(__dirname, '../shared'),
|
|
},
|
|
},
|
|
server: {
|
|
port: 5174,
|
|
fs: { allow: ['..'] },
|
|
},
|
|
})
|