mirror of
https://github.com/yeicor-3d/yet-another-cad-viewer.git
synced 2025-12-19 22:24:17 +01:00
frontend complete migration from parcel to vite for much better production builds
This commit is contained in:
15
frontend/tools/LicensesDialogContent.vue
Normal file
15
frontend/tools/LicensesDialogContent.vue
Normal file
@@ -0,0 +1,15 @@
|
||||
<script setup lang="ts">
|
||||
// License text for all dependencies, only downloaded when/if needed
|
||||
// @ts-ignore
|
||||
import licenseText from "../../assets/licenses.txt?raw";
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<pre class="license-text" v-html="licenseText"/>
|
||||
</template>
|
||||
|
||||
<style scoped>
|
||||
.license-text {
|
||||
white-space: pre-wrap;
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user