UNPKG

344 BPlain TextView Raw
1module.exports = {
2 presets: ["next/babel", "@zeit/next-typescript/babel"],
3 plugins: [
4 ["transform-define", { "process.env.WEBSITE_ROOT": process.env.WEBSITE_ROOT }],
5 "lodash",
6 [
7 "module-resolver",
8 {
9 root: ".",
10 alias: { "@common": "./pages-content/_common" },
11 },
12 ],
13 ],
14}