nanogen: init

This commit is contained in:
He4eT 2020-10-30 00:13:55 +05:00
commit c14e8f0570
3 changed files with 30 additions and 0 deletions

5
.gitignore vendored Normal file
View file

@ -0,0 +1,5 @@
node_modules
/docs
# Log files
npm-debug.log*

16
package.json Normal file
View file

@ -0,0 +1,16 @@
{
"name": "oddsquat",
"version": "1.0.0",
"description": "",
"main": "site.config.js",
"scripts": {
"start": "nanogen start",
"build": "nanogen build"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"nanogen": "^0.4.2"
}
}

9
site.config.js Executable file
View file

@ -0,0 +1,9 @@
module.exports = {
build: {
srcPath: './src',
outputPath: './docs'
},
site: {
title: 'oddsquat'
}
};