| 1234567891011121314151617181920 |
- import { defineConfig } from "vite";
- import vue from "@vitejs/plugin-vue";
- import { fileURLToPath, URL } from "node:url";
- export default defineConfig({
- base: "./",
- plugins: [
- vue({
- template: {
- // Keep public/static URLs relative to the generated index.html.
- transformAssetUrls: false,
- },
- }),
- ],
- resolve: {
- alias: {
- "@": fileURLToPath(new URL("./src", import.meta.url)),
- },
- },
- });
|