Added index, translations (not currently working), and removed further unnecessary stuff
8 lines
171 B
TypeScript
8 lines
171 B
TypeScript
import { defineNuxtConfig } from 'nuxt';
|
|
|
|
// https://v3.nuxtjs.org/api/configuration/nuxt.config
|
|
export default defineNuxtConfig({
|
|
css: [
|
|
'@/styles/globals.css'
|
|
]
|
|
});
|