1
0
forked from ti-nuage/site

Import initial.

This commit is contained in:
David Soulayrol
2022-04-04 18:30:08 +02:00
commit 57deaaaf34
46 changed files with 16985 additions and 0 deletions

20
scripts/config.js Normal file
View File

@@ -0,0 +1,20 @@
const { resolve, join } = require('path')
const hostname = 'https://ti-nuage.fr'
const projectRoot = resolve(__dirname, '..')
const distribution = join(projectRoot, 'dist')
module.exports = {
hostname,
paths: {
projectRoot,
/* Nodes */
nodeModules: join(projectRoot, 'node_modules'),
/* Metalsmith */
metalsmithSource: 'content',
metalsmithDestination: distribution,
/* Server */
serverRoot: distribution
}
}