0be313316f
- Switch to the Hugo Pipes (bye bye Webpack) - Use Inter from Google Fonts - Update README
18 lines
254 B
JavaScript
18 lines
254 B
JavaScript
module.exports = function(api) {
|
|
api.cache(true);
|
|
|
|
const presets = [
|
|
[
|
|
"@babel/preset-env",
|
|
{
|
|
targets: "last 2 versions, >1%, not dead",
|
|
},
|
|
],
|
|
];
|
|
const plugins = [];
|
|
|
|
return {
|
|
presets,
|
|
plugins,
|
|
};
|
|
};
|