mirror of
https://github.com/garentyler/inferno.git
synced 2025-07-19 11:50:41 -06:00
13 lines
242 B
TypeScript
13 lines
242 B
TypeScript
import { defineConfig } from 'vite'
|
|
import vue from '@vitejs/plugin-vue'
|
|
|
|
// https://vite.dev/config/
|
|
export default defineConfig({
|
|
resolve: { alias: { '@': '/src' } },
|
|
plugins: [vue()],
|
|
server: {
|
|
host: true,
|
|
port: 3000,
|
|
}
|
|
})
|