feat: Add VITE_DEV_PROXY configuration for npm registry API proxy
All checks were successful
CI / cache-and-install (push) Successful in 2m6s
All checks were successful
CI / cache-and-install (push) Successful in 2m6s
This commit is contained in:
@ -2,7 +2,7 @@
|
||||
// https://vue-macros.dev/zh-CN/features/reactivity-transform.html
|
||||
let count = $ref(0);
|
||||
|
||||
console.log(count);
|
||||
// console.log(count);
|
||||
|
||||
function increment() {
|
||||
count++;
|
||||
|
@ -25,6 +25,11 @@ const FComponent: FunctionalComponent<{ prop: string }> = (props, context) => (
|
||||
</div>
|
||||
</>
|
||||
);
|
||||
|
||||
/* fetch('https://jsonplaceholder.typicode.com/posts/1')
|
||||
.then((response) => response.json())
|
||||
.then((json) => console.log(json)); */
|
||||
fetch('/npm-registry-api/@vue%2Fbabel-plugin-jsx');
|
||||
</script>
|
||||
|
||||
<template>
|
||||
|
Reference in New Issue
Block a user