14 lines
274 B
JavaScript
14 lines
274 B
JavaScript
const nodeExternals = require('webpack-node-externals')
|
|
|
|
module.exports = function (api) {
|
|
api.chainWebpack((config, { isServer }) => {
|
|
if (isServer) {
|
|
config.externals([
|
|
nodeExternals({
|
|
whitelist: [/^vuetify/]
|
|
})
|
|
])
|
|
}
|
|
})
|
|
}
|