12 lines
254 B
TypeScript
12 lines
254 B
TypeScript
import { defineConfig } from 'vite'
|
|
import vue from '@vitejs/plugin-vue'
|
|
|
|
import { viteSingleFile } from "vite-plugin-singlefile"
|
|
export default defineConfig({
|
|
plugins: [vue(), viteSingleFile()],
|
|
resolve: {
|
|
alias: {
|
|
'@': '/src'
|
|
}
|
|
}
|
|
}) |