Skip to content

Commit

Permalink
feat: 文章、标签、友链、个人信息的crud
Browse files Browse the repository at this point in the history
  • Loading branch information
MarchRory committed Nov 19, 2023
1 parent 02427b7 commit bda29fe
Show file tree
Hide file tree
Showing 5 changed files with 98 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .history/.env_20231120000626.development
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Whether to open mock
VITE_USE_MOCK = false

# public path
VITE_PUBLIC_PATH = /

# Cross-domain proxy, you can configure multiple
# Please note that no line breaks
# VITE_PROXY = [["/basic-api","http://localhost:3000"],["/upload","http://localhost:3300/upload"]]
# VITE_PROXY = [["/upload","http://10.0.8.16:8080"]]
# VITE_PROXY=[["/api","https://vvbin.cn/test"]]

# Delete console
VITE_DROP_CONSOLE = false

# Basic interface address SPA
VITE_GLOB_API_URL = http://127.0.0.1:8080

# File upload address, optional
VITE_GLOB_UPLOAD_URL = /upload

# Interface prefix
VITE_GLOB_API_URL_PREFIX=
14 changes: 14 additions & 0 deletions .history/.env_20231120000651.development
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Whether to open mock
VITE_USE_MOCK = false

# public path
VITE_PUBLIC_PATH = /

# Basic interface address SPA
VITE_GLOB_API_URL = http://127.0.0.1:8080

# File upload address, optional
VITE_GLOB_UPLOAD_URL = /upload

# Interface prefix
VITE_GLOB_API_URL_PREFIX=
23 changes: 23 additions & 0 deletions .history/.prettierrc_20231120000353.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
module.exports = {
printWidth: 100,
semi: false,
vueIndentScriptAndStyle: true,
singleQuote: true,
trailingComma: 'all',
proseWrap: 'never',
htmlWhitespaceSensitivity: 'strict',
endOfLine: 'auto',
<<<<<<< HEAD:.prettierrc.js
plugins: ['prettier-plugin-packagejson'],
overrides: [
{
files: '.*rc',
options: {
parser: 'json',
},
},
],
};
=======
}
>>>>>>> thin:prettier.config.js
19 changes: 19 additions & 0 deletions .history/.prettierrc_20231120000715.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
module.exports = {
printWidth: 100,
semi: false,
vueIndentScriptAndStyle: true,
singleQuote: true,
trailingComma: 'all',
proseWrap: 'never',
htmlWhitespaceSensitivity: 'strict',
endOfLine: 'auto',
plugins: ['prettier-plugin-packagejson'],
overrides: [
{
files: '.*rc',
options: {
parser: 'json',
},
},
],
};
19 changes: 19 additions & 0 deletions .history/.prettierrc_20231120000742.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
module.exports = {
printWidth: 100,
semi: true,
vueIndentScriptAndStyle: true,
singleQuote: true,
trailingComma: 'all',
proseWrap: 'never',
htmlWhitespaceSensitivity: 'strict',
endOfLine: 'auto',
plugins: ['prettier-plugin-packagejson'],
overrides: [
{
files: '.*rc',
options: {
parser: 'json',
},
},
],
};

0 comments on commit bda29fe

Please sign in to comment.