UNPKG

vue-rest-client

Version:

A VueJS RESTful client component to easily integrate apps with APIs

14 lines (13 loc) 273 B
const nodeExternals = require('webpack-node-externals'); module.exports = { configureWebpack: () => { if (process.env.NODE_ENV === 'production') { return { externals: [ nodeExternals(), { 'vue': 'vue' } ] } } } }