25 lines
460 B
JavaScript
25 lines
460 B
JavaScript
const pkg = require("./package");
|
|
|
|
module.exports = {
|
|
apiPath: "stubs/api",
|
|
webpackConfig: {
|
|
output: {
|
|
publicPath: `/static/${pkg.name}/${process.env.VERSION || pkg.version}/`,
|
|
},
|
|
},
|
|
navigations: {
|
|
"hello.main": "/",
|
|
},
|
|
features: {
|
|
hello: {
|
|
enableRedirectNowButton: {
|
|
value: "true",
|
|
},
|
|
},
|
|
},
|
|
config: {
|
|
"hello.redirectTarget": "https://example.com",
|
|
"hello.redirectDelayMs": "5000",
|
|
},
|
|
};
|