You've already forked obsidian-visualiser
Big rework to include OPFS API for local edits. Big components rework in vanilla JS to optimize. Unfinished, DO NOT SHIP YET !
This commit is contained in:
@@ -16,6 +16,11 @@ export default defineNuxtConfig({
|
||||
tailwindcss: {
|
||||
viewer: false,
|
||||
config: {
|
||||
content: {
|
||||
files: [
|
||||
"./shared/**/*.{vue,js,jsx,mjs,ts,tsx}"
|
||||
]
|
||||
},
|
||||
theme: {
|
||||
extend: {
|
||||
boxShadow: {
|
||||
@@ -114,6 +119,7 @@ export default defineNuxtConfig({
|
||||
pageTransition: false,
|
||||
layoutTransition: false
|
||||
},
|
||||
ssr: false,
|
||||
components: [
|
||||
{
|
||||
path: '~/components',
|
||||
@@ -135,6 +141,7 @@ export default defineNuxtConfig({
|
||||
runtimeConfig: {
|
||||
session: {
|
||||
password: '699c46bd-9aaa-4364-ad01-510ee4fe7013',
|
||||
maxAge: 60 * 60 * 24 * 30,
|
||||
},
|
||||
database: 'db.sqlite',
|
||||
mail: {
|
||||
@@ -177,5 +184,10 @@ export default defineNuxtConfig({
|
||||
key: fs.readFileSync(path.resolve(__dirname, 'localhost+1-key.pem')).toString('utf-8'),
|
||||
cert: fs.readFileSync(path.resolve(__dirname, 'localhost+1.pem')).toString('utf-8'),
|
||||
}
|
||||
},
|
||||
vue: {
|
||||
compilerOptions: {
|
||||
isCustomElement: (tag) => tag === 'iconify-icon',
|
||||
}
|
||||
}
|
||||
})
|
||||
Reference in New Issue
Block a user