const { defineConfig } = require("@vue/cli-service"); module.exports = defineConfig({ transpileDependencies: true, configureWebpack: { devtool: "source-map", experiments: { topLevelAwait: true, }, }, pwa: { iconPaths: { faviconSVG: "img/icons/safari-pinned-tab.svg", }, workboxOptions: { importScripts: [ "additional-scripts.js", "safari-notifications.js", "nacl.js", "sw-bn.js", ], }, }, });