-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #39 from StrangeRanger/dev
Massive overhaul to packages, configurations, etc.
- Loading branch information
Showing
20 changed files
with
2,181 additions
and
3,640 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
# Node.js modules | ||
node_modules/ | ||
|
||
# Nuxt build and output directories | ||
.nuxt/ | ||
dist/ | ||
|
||
# Static assets (images, fonts, etc.) | ||
static/ | ||
public/ | ||
|
||
# Environment files | ||
.env | ||
.env.local | ||
.env.*.local | ||
|
||
# Logs | ||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
|
||
# Git files | ||
.git/ | ||
.gitignore | ||
|
||
# Configuration files (if you don’t want them formatted) | ||
.prettierrc | ||
.eslintrc | ||
.vscode/ | ||
.editorconfig | ||
|
||
# Ignoring specific config files or directories (optional, based on your project structure) | ||
package-lock.json | ||
yarn.lock | ||
*.lock | ||
|
||
# Assets and other binary files | ||
*.png | ||
*.jpg | ||
*.jpeg | ||
*.gif | ||
*.svg | ||
*.ico | ||
*.webp | ||
*.mp4 | ||
*.mp3 | ||
*.wav | ||
*.ogg | ||
*.flac | ||
*.ttf | ||
*.woff | ||
*.woff2 | ||
*.eot | ||
*.zip | ||
*.tar | ||
*.gz | ||
*.bz2 | ||
*.rar | ||
*.7z | ||
|
||
# Coverage reports (for test coverage tools) | ||
coverage/ | ||
*.lcov | ||
|
||
# MacOS specific files | ||
.DS_Store | ||
|
||
# IDE specific files | ||
.idea/ | ||
*.sublime- |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
@import './base.css'; | ||
@import "./base.css"; | ||
|
||
#app { | ||
margin: 0 auto; | ||
|
15 changes: 10 additions & 5 deletions
15
components/Header/MenuDrawer.vue → components/AppMenuDrawer.vue
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
import withNuxt from "./.nuxt/eslint.config.mjs"; | ||
|
||
export default withNuxt({ | ||
rules: { | ||
"vue/html-self-closing": [ | ||
"error", | ||
{ | ||
html: { | ||
void: "always", // Disable 'disallow self-closing on void elements' rule. | ||
}, | ||
}, | ||
], | ||
}, | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,26 @@ | ||
// https://nuxt.com/docs/api/configuration/nuxt-config | ||
import vuetify, { transformAssetUrls } from 'vite-plugin-vuetify' | ||
import vuetify, { transformAssetUrls } from "vite-plugin-vuetify"; | ||
|
||
export default defineNuxtConfig({ | ||
devtools: { enabled: true }, | ||
|
||
build: { | ||
transpile: ['vuetify'] | ||
transpile: ["vuetify"], | ||
}, | ||
|
||
modules: [ | ||
(_options, nuxt) => { | ||
nuxt.hooks.hook('vite:extendConfig', (config) => { | ||
/* @ts-expect-error: 'config.plugins' is possibly 'undefined'.ts(18048) */ | ||
config.plugins.push(vuetify({ autoImport: true })) | ||
}) | ||
} | ||
nuxt.hooks.hook("vite:extendConfig", (config) => { | ||
config.plugins.push(vuetify({ autoImport: true })); | ||
}); | ||
}, | ||
"@nuxt/eslint", | ||
], | ||
|
||
plugins: [{ src: '~/plugins/vue-matomo.js', mode: 'client' }], | ||
|
||
vite: { | ||
vue: { | ||
template: { | ||
transformAssetUrls | ||
} | ||
} | ||
transformAssetUrls, | ||
}, | ||
}, | ||
}, | ||
|
||
css: ['~/assets/css/main.css'], | ||
compatibilityDate: '2024-08-18' | ||
}) | ||
css: ["~/assets/css/main.css"], | ||
compatibilityDate: "2024-08-18", | ||
}); |
Oops, something went wrong.