mirror of
https://github.com/minimo-io/appticles.git
synced 2025-06-23 16:05:29 +00:00
13 lines
238 B
JavaScript
13 lines
238 B
JavaScript
import { defineConfig } from 'vite'
|
|
import { svelte } from '@sveltejs/vite-plugin-svelte'
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
base: "/biking/",
|
|
plugins: [svelte()],
|
|
|
|
server:{
|
|
open: "index.html"
|
|
}
|
|
})
|