mirror of
https://akkoma.dev/AkkomaGang/akkoma-fe.git
synced 2024-11-08 09:29:10 +00:00
21 lines
445 B
JavaScript
21 lines
445 B
JavaScript
|
const { defineConfig } = require("cypress");
|
||
|
const config = require('./build/webpack.dev.conf');
|
||
|
module.exports = defineConfig({
|
||
|
e2e: {
|
||
|
baseUrl: "http://localhost:8080",
|
||
|
setupNodeEvents(on, config) {
|
||
|
// implement node event listeners here
|
||
|
},
|
||
|
viewportHeight: 1080,
|
||
|
viewportWidth: 1920,
|
||
|
},
|
||
|
|
||
|
component: {
|
||
|
devServer: {
|
||
|
framework: "vue",
|
||
|
bundler: "webpack",
|
||
|
webpackConfig: config
|
||
|
},
|
||
|
},
|
||
|
});
|