From 0588b182a0e1bdc8a6ae0dde0b6d5cdee550df83 Mon Sep 17 00:00:00 2001 From: David Back Date: Tue, 4 Apr 2023 12:43:40 -0400 Subject: [PATCH] Draft Update --- package.json | 15 ++++++++------- vue.config.js | 5 ++++- 2 files changed, 12 insertions(+), 8 deletions(-) diff --git a/package.json b/package.json index 66144ba2..70e8ffde 100644 --- a/package.json +++ b/package.json @@ -4,26 +4,27 @@ "private": true, "scripts": { "serve": "vue-cli-service serve", - "build": "vue-cli-service build", + "build": "vue-cli-service build --modern", "test:unit": "vue-cli-service test:unit --coverage --ci", "test:unit:lite": "vue-cli-service test:unit --ci" }, "dependencies": { - "@pinia/testing": "0.0.14", + "@popperjs/core": "^2.10.2", "axios": "^0.27.2", - "bootstrap": "^5.2.2", + "bootstrap": "^5.2.3", "jest-junit": "^13.0.0", "maska": "^1.5.0", - "pinia": "^2.0.22", + "pinia": "^2.0.33", "pinia-plugin-persistedstate": "^2.2.0", - "vee-validate": "^4.7.0", + "vee-validate": "^4.8.4", "vue": "^3.2.13", - "vue-plugin-load-script": "^2.1.0", - "vue-router": "4.1.3" + "vue-plugin-load-script": "^2.1.1", + "vue-router": "4.1.6" }, "devDependencies": { "@testing-library/jest-dom": "5.16.5", + "@pinia/testing": "0.0.14", "@testing-library/user-event": "14.4.3", "@testing-library/vue": "6.6.1", "@vue/cli-plugin-babel": "^5.0.8", diff --git a/vue.config.js b/vue.config.js index 90d9b20b..d35748ff 100644 --- a/vue.config.js +++ b/vue.config.js @@ -9,6 +9,8 @@ process.env.VUE_APP_GOOGLE_PLACES_API_KEY = process.env.VUE_APP_GOOGLE_TAG_MANAGER_SCRIPT_BODY = "(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src='https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);})(window,document,'script','dataLayer','GTM-KKNWZ3');"; process.env.VUE_APP_GOOGLE_TAG_MANAGER_NOSCRIPT_FRAME_SRC = "https://www.googletagmanager.com/ns.html?id=GTM-KKNWZ3>m_auth=amlAYNhxUxuskQo7jmjadg>m_preview=env-38>m_cookies_win=x"; +const MiniCssExtractPlugin = require('mini-css-extract-plugin'); + module.exports = { publicPath: "/", css: { @@ -27,6 +29,7 @@ module.exports = { }, }, configureWebpack: { - devtool: 'source-map' + devtool: 'source-map', + plugins: [ new MiniCssExtractPlugin()] }, };