You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

123456789101112
  1. const path = require("path");
  2. const common = {
  3. resolve: {
  4. alias: {
  5. chartsDir: path.resolve(__dirname, '../src/charts/'),
  6. pagesDir: path.resolve(__dirname, '../src/pages/'),
  7. pagesCommonDir: path.resolve(__dirname, '../src/pages/common/')
  8. }
  9. }
  10. }
  11. module.exports = common;