Add sections

This commit is contained in:
2023-01-16 10:14:39 +01:00
parent ea00e78a8d
commit 02b0685f48
17 changed files with 193 additions and 15 deletions

View File

@ -5,11 +5,16 @@ import vue from '@vitejs/plugin-vue'
// https://vitejs.dev/config/
export default defineConfig({
base: "/",
plugins: [vue()],
resolve: {
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url))
base: "/",
plugins: [vue()],
resolve: {
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url))
}
},
server: {
watch: {
usePolling: true
}
}
}
})