1
0
mirror of https://github.com/checktheroads/hyperglass synced 2024-05-11 05:55:08 +00:00
checktheroads-hyperglass/ui/next.config.js

14 lines
270 B
JavaScript
Raw Normal View History

2020-01-17 02:50:57 -07:00
const aliases = require("./.alias");
module.exports = {
webpack(config) {
const { alias } = config.resolve;
config.resolve.alias = {
...alias,
...aliases
};
return config;
},
poweredByHeader: false
};