Skip to content

Commit

Permalink
fix(node): node 18 compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
t8 committed Jan 12, 2024
1 parent d6e06ca commit 95039b9
Show file tree
Hide file tree
Showing 3 changed files with 92 additions and 433 deletions.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
"version": "0.1.8",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint"
"serve": "export NODE_OPTIONS=--openssl-legacy-provider && vue-cli-service serve",
"build": "export NODE_OPTIONS=--openssl-legacy-provider && vue-cli-service build",
"lint": "export NODE_OPTIONS=--openssl-legacy-provider && vue-cli-service lint"
},
"gitHooks": {
"pre-commit": "vue-cli-service lint && git add -A",
Expand All @@ -23,8 +23,8 @@
"core-js": "^3.6.4",
"lodash": "^4.17.19",
"moment": "^2.26.0",
"node-sass": "^4.14.1",
"raw-loader": "^4.0.1",
"sass": "^1.69.7",
"sass-loader": "^8.0.2",
"semver": "^7.3.2",
"vue": "^2.6.11",
Expand Down
6 changes: 3 additions & 3 deletions src/views/Pst.vue
Original file line number Diff line number Diff line change
Expand Up @@ -142,9 +142,9 @@ export default {
<style lang="sass" scoped>
@font-face
font-family: 'JetBrainsMono'
src: url('https://cdn.jsdelivr.net/gh/JetBrains/JetBrainsMono/web/woff2/JetBrainsMono-Regular.woff2') format('woff2'),
url('https://cdn.jsdelivr.net/gh/JetBrains/JetBrainsMono/web/woff/JetBrainsMono-Regular.woff') format('woff'),
url('https://cdn.jsdelivr.net/gh/JetBrains/JetBrainsMono/ttf/JetBrainsMono-Regular.ttf') format('truetype')
src: url('https://cdn.jsdelivr.net/gh/JetBrains/JetBrainsMono/web/woff2/JetBrainsMono-Regular.woff2') format('woff2')
src: url('https://cdn.jsdelivr.net/gh/JetBrains/JetBrainsMono/web/woff/JetBrainsMono-Regular.woff') format('woff')
src: url('https://cdn.jsdelivr.net/gh/JetBrains/JetBrainsMono/ttf/JetBrainsMono-Regular.ttf') format('truetype')
font-weight: 400
font-style: normal
Expand Down
Loading

0 comments on commit 95039b9

Please sign in to comment.