mirror of
https://github.com/seigler/bl3skills.com
synced 2025-07-27 09:46:10 +00:00
7 lines
254 B
JavaScript
7 lines
254 B
JavaScript
const path = require('path');
|
|
|
|
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';
|
|
}
|