module.exports = { "transpileDependencies": [ "vuetify", "leaflet-arrowheads" ], devServer: { host: "0.0.0.0", proxy: { "^/api(/|$)": { target: "http://127.0.0.1:3000", }, "^/dougal-websocket(/|$)": { target: "ws://127.0.0.1:3000", ws: true } } }, chainWebpack: config => { config .plugin('html') .tap(args => { args[0].title = 'Dougal Web' return args }) }, configureWebpack: { resolve: { fallback: { path: require.resolve("path-browserify") } }, module: { rules: [ { test: /\.(woff|woff2|eot|ttf|otf)$/i, type: 'asset/resource' }, ], }, } }