telefunc
Version:
Remote functions. Instead of API.
10 lines (9 loc) • 320 B
JavaScript
import { install } from '../webpack/install.js';
const telefuncModule = function () {
this.extendBuild((config) => {
install(config);
});
};
export default telefuncModule;
// It's Nuxt's official recommendation to export the entire package.json
// export const meta = require('../../../../package.json')