Canvas feature release 1

This commit is contained in:
andrea.terzani
2024-08-09 11:47:36 +02:00
parent acc5771bbf
commit 9bcab57044
12 changed files with 1651 additions and 21 deletions

View File

@@ -17,7 +17,15 @@ import BlockViewer from '@/components/BlockViewer.vue';
import '@/assets/styles.scss';
import '@/assets/tailwind.css';
import { config } from 'md-editor-v3';
config({
editorConfig: {
renderDelay: 0,
zIndex: 200000000
}
});
var auth = createAuth({
plugins: {
http: axios,
@@ -38,7 +46,7 @@ var auth = createAuth({
}
});
axios.defaults.baseURL = import.meta.env.VITE_BACKEND_URL;
axios.defaults.baseURL ='https://hermione-nu6mvqujsq-ey.a.run.app/' // import.meta.env.VITE_BACKEND_URL;
const app = createApp(App);