15 lines
245 B
JavaScript
15 lines
245 B
JavaScript
|
|
import vue from '@vitejs/plugin-vue'
|
||
|
|
import { defineConfig } from 'vite'
|
||
|
|
|
||
|
|
// https://vitejs.dev/config/
|
||
|
|
export default defineConfig({
|
||
|
|
plugins: [vue()],
|
||
|
|
build: {
|
||
|
|
outDir: 'docs',
|
||
|
|
sourcemap: false
|
||
|
|
},
|
||
|
|
server: {
|
||
|
|
port: 8080
|
||
|
|
}
|
||
|
|
})
|