1
0
Fork 1
mirror of https://github.com/thatmattlove/hyperglass.git synced 2026-02-07 17:58:24 +00:00
thatmattlove-hyperglass/ui/next.config.js
checktheroads 0728965999 fix import
2020-01-17 02:50:57 -07:00

13 lines
270 B
JavaScript

const aliases = require("./.alias");
module.exports = {
webpack(config) {
const { alias } = config.resolve;
config.resolve.alias = {
...alias,
...aliases
};
return config;
},
poweredByHeader: false
};