Skip to content

Commit f03dc82

Browse files
Implement Netlify configuration
This commit implements a part of the implementation of the "hosting & continuous deployment concept" (1) with Netlify's configuration file (2). It initially defines the `command` and `publish` keys of the `[build]` section for production builds. See the "Hosting" and "Continuous Deployment" (sub)sections of the related epic issue for more details about the architecture. References: (1) #46 (2) https://www.netlify.com/docs/netlify-toml-reference Related epics: GH-46 Resolves GH-48
1 parent 43204f0 commit f03dc82

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

netlify.toml

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Copyright (C) 2018-present Arctic Ice Studio <[email protected]>
2+
# Copyright (C) 2018-present Sven Greb <[email protected]>
3+
#
4+
# Project: Nord Docs
5+
# Repository: https://github.com/arcticicestudio/nord-docs
6+
# License: MIT
7+
8+
# Configuration for Netlify.
9+
#
10+
# @see https://www.netlify.com/docs/netlify-toml-reference
11+
12+
[build]
13+
command = "npm run build"
14+
publish = "public/"

0 commit comments

Comments
 (0)