aboutsummaryrefslogtreecommitdiffstats
path: root/config/webpack/paths.js
blob: fd4c73fec09f3b4577772a354c02bf9c21787d82 (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, '../**/*.php')],
  sassPaths: [path.resolve(devFolder, '../node_modules/modern-normalize/')],
};