Upgrade Node packages for frontend build

This commit is contained in:
D. Berge
2023-10-31 22:41:37 +01:00
parent 5ef55a9d8e
commit 11e84a7e72
4 changed files with 7630 additions and 15193 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -15,7 +15,7 @@
"leaflet-arrowheads": "^1.2.2",
"leaflet-realtime": "^2.2.0",
"leaflet.markercluster": "^1.4.1",
"marked": "^2.0.3",
"marked": "^9.1.4",
"plotly.js-dist": "^2.27.0",
"suncalc": "^1.8.0",
"typeface-roboto": "0.0.75",
@@ -27,10 +27,10 @@
},
"devDependencies": {
"@babel/plugin-proposal-logical-assignment-operators": "^7.14.5",
"@vue/cli-plugin-babel": "~4.4.0",
"@vue/cli-plugin-router": "~4.4.0",
"@vue/cli-plugin-vuex": "~4.4.0",
"@vue/cli-service": "^4.5.13",
"@vue/cli-plugin-babel": "^5.0.8",
"@vue/cli-plugin-router": "^5.0.8",
"@vue/cli-plugin-vuex": "^5.0.8",
"@vue/cli-service": "^5.0.8",
"sass": "~1.32",
"sass-loader": "^8.0.0",
"stylus": "^0.54.8",

View File

@@ -29,7 +29,7 @@
<style>
@font-face {
font-family: "Bank Gothic Medium";
src: local("Bank Gothic Medium"), url("/fonts/bank-gothic-medium.woff");
src: local("Bank Gothic Medium"), url("/public/fonts/bank-gothic-medium.woff");
}
.brand {

View File

@@ -22,5 +22,20 @@ module.exports = {
args[0].title = 'Dougal Web'
return args
})
},
configureWebpack: {
resolve: {
fallback: {
path: false
}
},
module: {
rules: [
{
test: /\.(woff|woff2|eot|ttf|otf)$/i,
type: 'asset/resource'
},
],
},
}
}