-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(content): use content from emdaer/emdaer as site sections (#12)
* feat(content): use content from emdaer/emdaer as site sections * docs: add section about site content to README * docs: add toc
- Loading branch information
1 parent
49d3275
commit ac88ad3
Showing
7 changed files
with
806 additions
and
60 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
exports.modifyWebpackConfig = ({ config }) => { | ||
// @TODO Remove this | ||
// Beacuse webpack 1.x prefixes the bundle with tabs,imported template | ||
// literals are indented incorrectly. Additionally, webpack-configurator does | ||
// not allow sourcePrefix to be an empty string. Due to this, we need to add a | ||
// single space which does not affect formatting. This is issue was fixed in | ||
// webpack 2 and therefore will be fixed in Gatsby 2 | ||
config.merge({ | ||
output: { | ||
sourcePrefix: ' ', | ||
}, | ||
}); | ||
return config; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.