23 lines
524 B
JavaScript
23 lines
524 B
JavaScript
module.exports = {
|
|
env: {
|
|
legacyBaseUrl: "http://www.jamkazam.local:3000",
|
|
apiBaseUrl: "http://www.jamkazam.local:3000/api",
|
|
},
|
|
|
|
e2e: {
|
|
// We've imported your old cypress plugins here.
|
|
// You may want to clean this up later by importing these.
|
|
setupNodeEvents(on, config) {
|
|
return require("./cypress/plugins/index.js")(on, config);
|
|
},
|
|
baseUrl: "http://beta.jamkazam.local:4000",
|
|
},
|
|
|
|
component: {
|
|
devServer: {
|
|
framework: "react",
|
|
bundler: "webpack",
|
|
},
|
|
},
|
|
};
|