mirror of
https://github.com/netbirdio/dashboard.git
synced 2026-01-26 01:21:04 +00:00
* Init Dashboard V2 * Update README.md * use dedicated vars and prevent docker push on PRs --------- Co-authored-by: Maycon Santos <mlsmaycon@gmail.com>
16 lines
269 B
TypeScript
16 lines
269 B
TypeScript
import { defineConfig } from "cypress";
|
|
|
|
export default defineConfig({
|
|
e2e: {
|
|
baseUrl: "http://localhost:3000",
|
|
},
|
|
component: {
|
|
devServer: {
|
|
framework: "next",
|
|
bundler: "webpack",
|
|
},
|
|
},
|
|
viewportWidth: 1920,
|
|
viewportHeight: 1080,
|
|
});
|