mirror of
https://iceshrimp.dev/Crimekillz/jointrashposs.git
synced 2024-11-22 08:53:49 +01:00
Fix design
This commit is contained in:
parent
bcf5fdd2a5
commit
db7af6bcdd
@ -14,6 +14,7 @@ defineProps<{
|
||||
|
||||
<style scoped>
|
||||
.prevroot {
|
||||
@apply rounded-lg;
|
||||
background: linear-gradient(45deg, #aaa 25%, transparent 25%, transparent 75%, #aaa 75%),
|
||||
linear-gradient(45deg, #aaa 25%, transparent 25%, transparent 75%, #aaa 75%);
|
||||
background-color: #888;
|
||||
|
@ -18,9 +18,9 @@ export const locales = [
|
||||
|
||||
export default defineNuxtConfig({
|
||||
runtimeConfig: {
|
||||
locales,
|
||||
public: {
|
||||
baseUrl,
|
||||
locales,
|
||||
}
|
||||
},
|
||||
css: [
|
||||
|
@ -9,7 +9,7 @@ export default defineNitroPlugin((nitroApp) => {
|
||||
console.log(event.path);
|
||||
const runtimeConfig = useRuntimeConfig();
|
||||
//@ts-ignore
|
||||
if (!event.path.match(new RegExp(`^/(${runtimeConfig.public.locales.map((l) => l.code).join('|')})/`))) {
|
||||
if (!event.path.match(new RegExp(`^/(${runtimeConfig.locales.map((l) => l.code).join('|')})/`))) {
|
||||
html.htmlAttrs = [];
|
||||
|
||||
const remainingList: string[] = [];
|
||||
|
Loading…
Reference in New Issue
Block a user