aboutsummaryrefslogtreecommitdiffstats
path: root/config/paths.js
blob: 8b6720641785fc61fe35d70815d5ec6683bc71bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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/')],
};