https://cypress.io logo
This is so strange, If i use import syntax it doe...
# general-chat
n
This is so strange, If i use import syntax it doesn't seem to work. But if i change this to
require
syntax then it works. Doesn't work:
Copy code
import { defineConfig } from 'cypress'
Works fine:
Copy code
const { defineConfig } = require('cypress')
2 Views