Migrate to SvelteKit and Vite

This commit is contained in:
2023-08-06 18:52:31 +02:00
parent 868a46302c
commit cd93d7442f
39 changed files with 2038 additions and 2044 deletions

View File

@@ -1,9 +1,9 @@
const { defineConfig } = require("cypress");
import { defineConfig } from 'cypress';
module.exports = defineConfig({
e2e: {
baseUrl: "http://localhost:8080/",
screenshotOnRunFailure: false,
video: false,
},
export default defineConfig({
e2e: {
baseUrl: 'http://localhost:4173/',
screenshotOnRunFailure: false,
video: false
}
});