ryujinx-website/gridsome.server.js
Thog 8134389b9f Rewrite website using Gridsome
TODO:
- migrate to vuetify 2.x
- CI integration
- move team.json to another repository
2020-02-07 16:11:27 +01:00

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/]
})
])
}
})
}