aboutsummaryrefslogtreecommitdiffstats
path: root/config/paths.js
diff options
context:
space:
mode:
Diffstat (limited to 'config/paths.js')
-rw-r--r--config/paths.js15
1 files changed, 0 insertions, 15 deletions
diff --git a/config/paths.js b/config/paths.js
deleted file mode 100644
index 8b67206..0000000
--- a/config/paths.js
+++ /dev/null
@@ -1,15 +0,0 @@
-const path = require('path');
-
-const devFolder = path.resolve(__dirname, '../src/');
-
-module.exports = {
- src: {
- fonts: path.resolve(devFolder, './fonts/'),
- images: path.resolve(devFolder, './images/'),
- scripts: path.resolve(devFolder, './js/app.js'),
- style: path.resolve(devFolder, './scss/style.scss'),
- },
- dist: path.resolve(devFolder, '../assets/'),
- files: [path.resolve(devFolder, '../**/*.html')],
- sassPaths: [path.resolve(devFolder, '../node_modules/modern-normalize/')],
-};