mirror of
https://github.com/siderolabs/talos.git
synced 2025-08-18 21:21:10 +02:00
This replaces the Mardown based landing page with a pure HTML approach. This allows us to have a landing page that is much more impactful. Signed-off-by: Andrew Rynhard <andrew@andrewrynhard.com>
9 lines
350 B
JavaScript
9 lines
350 B
JavaScript
module.exports = {
|
|
defaultLanguage: `en`,
|
|
availableRoutesFile: `${__dirname}/routes.json`,
|
|
contentInputFolder: `${__dirname}/content/`,
|
|
menuInputFile: `${__dirname}/content/{version}.{lang}.json`,
|
|
sectionsOutputFile: `${__dirname}/static/{version}.sections.{lang}.json`,
|
|
menuOutputFile: `${__dirname}/static/{version}.menu.{lang}.json`
|
|
}
|