mirror of
https://github.com/seigler/bl3skills.com
synced 2025-07-26 01:06:13 +00:00
9 lines
334 B
JavaScript
9 lines
334 B
JavaScript
const path = require('path');
|
|
|
|
exports.routes = ['/operative', '/siren', '/beastmaster', '/bot-jock'];
|
|
|
|
exports.webpack = function (config, env) {
|
|
// let { production, webpack } = env;
|
|
config.resolve.alias['@constants'] = path.resolve(__dirname, 'src/constants');
|
|
// config.resolve.alias['preact-compat'] = 'preact/compact';
|
|
};
|