mirror of
https://github.com/modrinth/code.git
synced 2026-08-30 11:36:05 +00:00
29 lines
522 B
TypeScript
29 lines
522 B
TypeScript
// https://nuxt.com/docs/api/configuration/nuxt-config
|
|
export default defineNuxtConfig({
|
|
srcDir: 'src/',
|
|
compatibilityDate: '2025-07-15',
|
|
devtools: { enabled: true },
|
|
devServer: {
|
|
port: 42069,
|
|
},
|
|
app: {
|
|
head: {
|
|
title: 'Modrinth 2',
|
|
htmlAttrs: {
|
|
lang: 'en',
|
|
},
|
|
link: [{ rel: 'icon', type: 'image/x-icon', href: '/favicon.ico' }],
|
|
},
|
|
},
|
|
future: {
|
|
compatibilityVersion: 5,
|
|
},
|
|
css: ['~/assets/styles/styles.css'],
|
|
postcss: {
|
|
plugins: {
|
|
tailwindcss: {},
|
|
autoprefixer: {},
|
|
},
|
|
},
|
|
})
|